On 8/30/05, Kris Van Bruwaene <[EMAIL PROTECTED]> wrote: > I recently discovered that scripts have become non-executable on my reiserfs > share, even though the -x flags are set: > [EMAIL PROTECTED]:/home/kris# cat tst > #! /usr/bin/perl -w > print "Hello world\n"; > [EMAIL PROTECTED]:/home/kris# ./tst > bash: ./tst: /usr/bin/perl: bad interpreter: Toegang geweigerd #(=Access > denied)
I believe the line should read #!/usr/bin/perl -w not #! /usr/bin/perl -w [no space between "!" and first "/"] unless that's a typo between output and your file. -- ~Mike - Just my two cents - No man is an island, and no man is unable.
