Shows the output of 3 files all which have the same "textual" contents. Only the one created in Linux functions correctly.
-rwxr-xr-x 1 chris chris 52 2011-04-04 07:21 lin_orig.php
-rwxr-xr-x 1 chris chris 64 2011-04-04 07:21 win_copy.php
-rwxr-xr-x 1 chris chris 68 2011-04-04 07:21 win_orig.php
chris@chris-AO532h:~/puzzles/os_test$ gedit lin_orig.php &
[1] 1759
chris@chris-AO532h:~/puzzles/os_test$ ./lin_orig.php
created in gedit
chris@chris-AO532h:~/puzzles/os_test$ ./win_orig.php
bash: ./win_orig.php: usr/bin/php^M: bad interpreter: No such file or directory
chris@chris-AO532h:~/puzzles/os_test$ ./win_copy.php
bash: ./win_copy.php: usr/bin/php: bad interpreter: No such file or directory
Textual Contents of 3 files identical:
#!/usr/bin/php
<?php
echo "created in 'OS'/'App'\n";
?>
This line:
#!/usr/bin/php
has no observable effect. I've verified this twice now. The Windows 7 file was created in notepad++, opened in gedit and saved to the Linux file system.
I did notice that the text in gedit is not the same "size" or font. It looks different. The strange thing is the file works if I use php directly to run the script.
php myscript.php
works
but
./myscript.php
does not work.
How can i look at a binary representation of the file?


./myscript.php? What if the shebang line pointed to/usr/bin/php5? – BoltClock♦ Mar 21 '11 at 21:31/etc/alternatives/phpwill also be a symbolic link, and needs to point somewhere sensible.man -k alternativesshould help. – dmckee Mar 21 '11 at 21:32