Joshua Scott wrote: > > Whenever I view the processes (ps -ef) running on my Linux box, my perl > scripts always show as: > > "/usr/bin/perl ./scriptname.pl" > > Is there any way to modify this so that it appears differently? I'd like to > be able to hide as much as possible.
Try assigning the name you want to the $0 (dollar sign - zero) variable. $0 = 'what I want ps to see'; John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
