> 
> How can i generate such a file?

# vi mysript.pl :
 #!/usr/bin/perl -w
 use strict;
 print "hello\n";
# ./myscript.pl
Bash: Bad command or file name : Permission denied
# chmod 755 myscript.pl
# ./myscript.pl
hello
#
 
On unix it has to be executable by the user running it, commonly 
755 or on winders you have to have the file extension .pl associated 
with the perl binary which is usually done on installing Perl.

HTH

DMuey

> 
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to