![]() |
.. (לתיקייה המכילה) | |
When trying to run a script you get the following error: | |
You have probably saved your script in a Windows new line format. Windows uses "\r\n" for a newline while UNIX uses "\n". Because of that several programs (like tcsh) can get confused from the wrong format of a new line. If you need to convert between the various formats you can use the unix2dos and dos2unix commands.For example to solve your current problem, use: dos2unix [script]
|
The script doesn't run the last line. | |
Make sure that the last line in every script ends with an enter ("\n"). |