Olivier Prouvost <[EMAIL PROTECTED]> wrote:
> Do you mean, the file shall become like that :
I literally mean, remove the cariage return characters from it.
If you've installed from the binary release, than the antRun script
contains DOS line ends (cariage return + linefeed) instead of Unix
ones.
A command like this with GNU tr works, not sure whether non-GNU
version may need a different syntax
tr -d '\r' < antRun > tmp
mv tmp antRun
(I used M-% C-q C-m RET RET ! in XEmacs).
The main problem is, that the OS doesn't find the interpreter
/bin/sh^M to run the script - and I'm not talking about blank lines 8-)
Stefan