vnc
1. If you dont’t indicate what interpreter to use for your script, then this has to be inferred and that process can produce incorrect results. 2. CRLF as line terminators can certainly cause this type of problem. So, first ensure that you have LF only not CRLF. There are many ways to do this, but one is in vim: Code: :set ff=unix :w And second, use a shebang as the first line of the...
Read More