Powershell Editor For Mac

Active4 months ago

I'm trying to figure out the easiest way to edit text files in the console (PowerShell in my case). I'm using Windows 7 64 bit. It galls me that I can't just type edit filename.txt to edit a file. That used to work, but that's all changed. What are my options to view and edit text files within the windows console, and if you tell me to install and learn VIM I'm going to punch you in the face. :-)

Joey
277k67 gold badges588 silver badges619 bronze badges
BusilinksBusilinks

PowerShell coding on a Mac 10 June 2014 / in PowerShell / by Robin Plomp Because my main workstation is a MacBook pro, I use a Windows 8.1 virtual machine for most of my PowerShell coding work or I connect via RDP to my management server.

5261 gold badge6 silver badges14 bronze badges

13 Answers

  1. The Windows PowerShell Integrated Scripting Environment (ISE) is a host application for Windows PowerShell. In Windows PowerShell ISE, you can run commands and write, test, and debug scripts in a single Windows-based graphic user interface. The interface provides multiline editing, tab completion.
  2. Sysadmins, rejoice: PowerShell is coming to Linux and Mac. Microsoft announced Thursday that its automation and scripting system is breaking out of the confines of Windows and going open source.

Kinesics Text Editor.

It's super fast and handles large text files, though minimal in features. There's a GUI version and console version (k.exe) included. Should work the same on linux.

Example: In my test it took 7 seconds to open a 500mb disk image.

Asbjørn Ulsberg
7,3662 gold badges36 silver badges55 bronze badges
user2164194user2164194

While risking you punching me, I guess you are stuck with the solution you mentioned. Have a look at this posting on SuperUser:

Also, there is a nano version for windows:

I'll duck and cover now, hopefully someone will have a more sufficient answer.

Community
Sven PlathSven Plath
4081 gold badge3 silver badges17 bronze badges

Why not use notepad?

The old edit.com works in PowerShell (at least on my box: Windows 7 Pro x86) but in x64 it doesn't work due to its 16bit architecture.

You can take a look at this easy editor.

Vlad Schnakovszki
5,4744 gold badges55 silver badges95 bronze badges
CB.CB.
46.9k7 gold badges107 silver badges126 bronze badges

Bit of a resurrect but for anyone else coming to this question, take a look at the Micro editor. It's a small standalone EXE with no dependencies and with native Windows 3264 versions. Works well in both PowerShell and CMD.EXE.

Alan BAlan B

You could install Far Manager (a great OFM, by the way) and call its editor like that:

JoeyJoey
277k67 gold badges588 silver badges619 bronze badges

I agree with Sven Plath. Nano is a great alternative. If you have Chocolatey setup. Install nano by typing the following in Powershell:

Then, to edit somefile.txt enter:

It's pretty neat!

Edit:Nano works well on my Windows 10 box but takes incredibly long to load the first time on my Windows 7 machine. That made me switch to vim (vi) on my Win 7 laptop

Add a line in the powershell profile to Set-Alias (sal)

Esc - : - x - Enter :-)

Community
Albino CordeiroAlbino Cordeiro
9641 gold badge11 silver badges18 bronze badges

install vim from online, and then you can just do: vim 'filename' to edit that file

edwardtyledwardtyl

If you use Windows container and you want change any file, you can get and use Vim in Powershell console easily.

To shelled to the Windows Docker container with PowerShell:

docker exec -it <name> powershell

  • First get Chocolatey package manager

    Invoke-WebRequest https://chocolatey.org/install.ps1 -UseBasicParsing | Invoke-Expression;

  • Install Vim

    choco install vim

  • Refresh ENVIRONMENTAL VARIABLEYou can just exit and shell back to the container

  • Go to file location and Vim it vim file.txt

Aidar GatinAidar Gatin

In linux i'm a fun of Nano, i'm always using nano, and is really a great choice. There is a version for windows. Here is the link https://nano-editor.org/dist/win32-support/

However more often we need to open the file in question, from the command line as quick as possible, to not loose time. We can use notepad.exe, we can use notepad++, and yea, we can use sublim text. I think there is no greater then a lightweight, Too powerful editor. Sublime text here. for the thing, we just don't want to get out of the command line, or we want to use the command line to be fast. and yea. We can use sublime text for that. it contain a command line that let you quickly open a file in sublime text. Also there is different options arguments you can make use of. Here how you do it.

First you need to know that there is subl.exe. a command line interface for sublim.

1->first we create a batch file. the content is

We can save that wherever we want. I preferred to create a directory on sublime text installation directory. And saved there the batch file we come to write and create.

(Remark: change the path above fallowing your installation).

2->we add that folder to the path system environment variable. and that's it.

or from system config (windows 7/8/10)

then:

then:

then we copy the path:

then we add that to the path variable:

too quick!

launch a new cmd and now you've got subl command working well!

to open a file you need just to use subl command as fellow:

you can also use one of the options arguments (type --help to see them as in the image above).

Also note that you can apply the same method with mostly any editor of your choice.

Mohamed AllalMohamed Allal

I am a retired engineer who grew up with DOS, Fortran, IBM360, etc. in the 60's and like others on this blog I sorely miss the loss of a command line editor in 64-bit Windows. After spending a week browsing the internet and testing editors, I wanted to share my best solution: Notepad++. It's a far cry from DOS EDIT, but there are some side benefits. It is unfortunately a screen editor, requires a mouse, and is consequently slow. On the other hand it is a decent Fortran source editor and has row and column numbers displayed. It can keep multiple tabs for files being edited and even remembers where the cursor was last. I of course keep typing keyboard codes (50 years of habit) but surprisingly at least some of them work. Maybe not a documented feature. I renamed the editor to EDIT.EXE, set up a path to it, and invoke it from command line. It's not too bad. I'm living with it. BTW be careful not to use the tab key in Fortran source. Puts an ASCII 6 in the text. It's invisible and gFortran, at least, can't deal with it. Notepad++ probably has a lot of features that I don't have time to mess with.

Doug MillarDoug Millar

I had to do some debugging on a Windows Nano docker image and needed to edit the content of a file, who would have guessed it was so difficult.

I used a combination of Get-Content and Set-Content and base 64 encoding/decoding to update files. For instance

Editing foo.txt

The trick is piping the base 64 decoded string to Set-Content

Powershell Editor For Mac Os X

Pdf editor for mac

Its no vim but I can update files, for what its worth.

ug_ug_
9,1752 gold badges25 silver badges45 bronze badges

I'm thinking you could just use notepad, like this:

It should open in notepad.

XelxaXelxa

Well there are thousand ways to edit a Text file on windows 7.Usually people Install Sublime , Atom and Notepad++ as an editor.For command line , I think the Basic Edit command (by the way which does not work on 64 bit computers) is good;Alternatively I find type con > filename as a very Applaudable method.If windows is newly installed and One wants to avoid Notepad. This might be it!!The perfect usage of Type as an editor :)

reference of the Image:- https://www.codeproject.com/Articles/34280/How-to-Write-Applet-Code

Reitsu YReitsu Y

protected by eyllanescApr 14 '18 at 0:31

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?

Online Powershell Editor

Not the answer you're looking for? Browse other questions tagged text-editorwindows-7-x64 or ask your own question.