Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: how to run this script (permissions)

by toolic (Bishop)
on Oct 05, 2012 at 17:25 UTC ( [id://997524]=note: print w/replies, xml ) Need Help??


in reply to Re^2: how to run this script
in thread how to run this script

when i do ./filename it gives error bash: ./test.pm: Permission denied
You probably need to give your test.pm file execute permissions, like:
chmod 777 test.pm

Also, conventionally, the .pm file name suffix is reserved for Perl module files (see package). It is more common to use the .pl file extension for scripts.

Replies are listed 'Best First'.
Re^4: how to run this script (permissions)
by johngg (Canon) on Oct 05, 2012 at 17:44 UTC
    chmod 777 test.pm

    Far too permissive!

    That gives every man and his dog permission to run, modify or even delete the script, if they are able to browse to the directory containing it. Much safer would be

    chmod u+x test.pm

    We see, and have to try to fix, the chaos that ensues when someone does an ill-considered

    chmod -R 777 /some/path/with_lots_of/sub-directories

    and it is a practice strongly to be discouraged.

    Cheers,

    JohnGG

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://997524]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (8)
As of 2024-04-19 08:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found