Linux-Texteditor für Windows

17081
lego 69

Kann jemand einen guten Linux-Texteditor für Windows empfehlen (falls vorhanden), habe ich Skripts für C-Shell mit dem Texteditor von Windows geschrieben, aber ich habe ein Problem, das nicht ausgeführt wird, da Windows nicht UNIX ist. Ich möchte Linux nicht für ein paar Skripte installieren, ich teste meine Skripte über einen Unix-Server (dieser Server gehört nicht mir), danke im Voraus, auch ich habe es geschafft dos2unix command, funktioniert auch nicht

2
Was passiert, wenn Sie `dos2unix` ausführen? Fehlermeldung? Was passiert, wenn Sie ein Skript ausführen, das von `dos2unix` verarbeitet wurde? Wenn Sie versuchen, Ihr Skript in Windows `cmd.exe` auszuführen, haben Sie richtig" Windows ist nicht Unix ". Sie müssen Cygwin installieren, wenn ** Henno ** vorschlägt, Linux installiert oder auf ein Linux- oder Unix-System zugegriffen wird. Und wenn möglich, verwenden Sie eine andere Shell außer csh oder tcsh. Dennis Williamson vor 14 Jahren 1
Es scheint, als ob Ihr Problem darin besteht, dass Sie die Skripts nicht ausführen können. Der Editor, den Sie verwenden, ist unwichtig. Sie können Windows Notepad oder Notepad ++ oder ein beliebiges anderes verwenden. Was Sie finden müssen, ist eine c-Shell, die zum Testen unter Windows ausgeführt wird. Doug Harris vor 14 Jahren 1

5 Antworten auf die Frage

5
wag2639

I like using notepad++. It has an EOL (end of line) converter under Edit...EOL (details).

3
Henno

You could try and install Cygwin, this will give you a relatively complete Linux environment within Windows. You can configure it to install just what you need (like a shell and a few utilities, and vi or emacs), and go from there.

1
akira

'vim' has a windows port over there. and you can save files with unix-lineending (among a lot of other things).

0
RussellW

If you are looking for a Windows GUI app for text editing in a format that is Linux friendly, EditPlus is a good tool.

Wahrscheinlich nicht die Antwort, die das Poster sucht, da dos2unix auch nicht geholfen hat. akid vor 14 Jahren 0
0
Neal

What does the file look look when you look at it in a plaint text editor such as notepad?

If it looks sensible as a text file in Windows, then you could try using the Windows (command line) version of dos2unix, although I would be surprised if the dos2unix program had a problem.

Look at it again to see that only the line breaks have changed.

What happens when you look at the file on the server? Does it look sensible?

Are you sure that the script works? (Have you remembered to make the script executable?)