yes, could be a transfer problem.
Try to find out if the script first line contain at the end a \r character.
You can see that viewing the script with some editor (joe, vim etc...), or viewing
hexa).
Also could be a path problem.
| [reply] |
If it is a ascii-binary transfer problem, you can quickly
fix it (without uploading again) with
perl -pi -e 's/\r//g' script.pl
If that's not the problem, running the above command won't
hurt anything anyway.
| [reply] |