also @ TechSpot: Asus' new lineup of Z87 Haswell motherboards revealed

Can I Use Notepad in Windows to Write UNIX Scripts

Discussion in 'The Alternative OS' started by dgower2, Apr 25, 2006.

  1. dgower2 TechSpot Maniac Posts: 340

    Hi All,

    I've been attempting to edit UNIX scripts in Windows, using Notepad, by FTPing the script files to and from the UNIX/Windows machines. It's easier for me than using VI or PICO. However, I think Notepad may be corrupting the script files. Does anyone know if Notepad will, in fact, render UNIX scripts unusable? Do you know of a better way to edit/create UNIX scripts on a Windows box?

    TiA

    Dan
  2. Didou Bowtie extraordinair! Posts: 5,898

    Maybe the MS-DOS editor. ;)
  3. Nodsu Newcomer, in training Posts: 9,431

    The linefeeds are different in DOS/Windows and Unix - you will have to convert the files.

    Some FTP programs can do this automatically. In Unix, there is a program called dos2unix (available for Windows too, I believe).

    You can also use some more advanced editor. Crimson Editor supports opening files directly over FTP for example, understands different newlines and you can specify in which format you wish to save the text.
  4. RealBlackStuff Newcomer, in training Posts: 8,165

    Editors like EditpadPro (www.editpadpro.com) can convert text into Unix-format and v.v.
    A version is available for Linux, which I would assume should also work under Unix.
  5. dgower2 TechSpot Maniac Posts: 340

    Thanks!

    Thanks for the responses.