• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

unix shell scripting

OogyWaWa

Senior member
so i'm doing some shell scripting at work and learning lots of cool new things. amazing how powerful the unix shells can be. however, i'm also realize how much it totally sucks ass to work with vi /emacs, whatever. is there any type of program/ide i can use on my windows box just to test syntax and stuff. then i can just paste it into my console?
 
Cygwin?

Also, WinSCP will help you quite a bit if you keep jumping between Windows and UNIX. Just mentioning, in case you didn't already know...
 
You could also find a windows editor that lets you edit over ssh. I do this on mac. I combine cyberduck with textmate. I sftp to my server, then right click and open with textmate. Cyberduck takes care of the magic. Then I open another shell to test from.
 
so i'm doing some shell scripting at work and learning lots of cool new things. amazing how powerful the unix shells can be. however, i'm also realize how much it totally sucks ass to work with vi /emacs, whatever. is there any type of program/ide i can use on my windows box just to test syntax and stuff. then i can just paste it into my console?

There are hundreds of other editors available, however becoming comfortable with vim will go a long way to making your job simpler because it's available on every unix system out there out of the box. And it really is a great editor once you get the basics down, one of the first things I do on a new Windows box is install gvim.
 
Yep, starting to use vi/vim is like boot camp (or at least what I hear boot camp is like). It's extremely unpleasant, but it will make you much better at your job. 😉

If you're using just "vi" in a terminal, try "vim". ViM should do syntax highlighting. If you finally decide that you just can't stand the modal interface anymore, and "vim" works, try "vim -y".
 
Back
Top