![]() |
|
good chemistry is complicated, and a little bit messy -LW |
|
PerlMonks |
Is there a way to hide perl's command line from programs such as "ps"?by faq_monk (Initiate) |
on Oct 08, 1999 at 00:29 UTC ( [id://738]=perlfaq nodetype: print w/replies, xml ) | Need Help?? |
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version: First of all note that if you're doing this for security reasons (to avoid people seeing passwords, for example) then you should rewrite your program so that critical information is never given as an argument. Hiding the arguments won't make your program completely secure.
To actually alter the visible command line, you can assign to the variable
$0 = "orcus [accepting connections]";
|
|