I would not use something as crude as Windows Notepad for programming work (which inlcudes shell scripting).
Actually, I still use vi for scripts
- is available on ALL UNIX platforms with the same syntax
- works even over a simple telnet connection, as it does not need any function keys/mousing around/etc
- can edit files of arbitrary size, although it might change to line mode with sufficiently large files.
If you are working on UNIX from Windows, I recommend using notepad++, as it can write text files in UNIX mode (LF instead of CRLF), provides a hex display mode, and lots of other features that are helpful when writing any type of code.
... View more