Article:
 |
|
Is Linux Annoying?
|
| Subject: |
|
error message that could drive you nuts |
| Date: |
|
2003-09-16 07:33:34 |
| From: |
|
anonymous2
|
|
|
|
have a look at this session:
# ls -l somefile
somefile
# chmod +x somefile
# ./somefile
./somefile: Command not found.
# what the %$&!?
# file somefile
somefile: perl script text
what happened?
# head -1 somefile
#!/usr/local/bin/perl
# ls /usr/local/bin/perl
/usr/local/bin/perl: No such file or directory.
# aha!
# vi somefile
fldwx
# ./somefile
Hello, world!
|
Showing messages 1 through 3 of 3.
-
error message that could drive you nuts
2003-09-16 08:25:06
anonymous2
[View]
-
error message that could drive you nuts
2003-09-16 09:34:06
anonymous2
[View]
-
error message that could drive you nuts
2003-11-29 17:28:53
anonymous2
[View]
# export ERROR_MESSAGES=abusive
# ./somefile
you stupid idiot, I cannot find the
interpreter given on the first line, so edit
me and correct that before you try to execute me!
#