Re: [Perl-unix-users] Getting all the arguments of a process

2002-07-08 Thread Pierre-Philippe Ravier
> Pierre, > > Instead of using /usr/bin/ps, try /usr/ucb/ps > -auxwww > > This will output a much longer cmd line for each > process. > > > -- > James Schappet > Schappet.com Thanks, but unfortunately I don't want to call an external binary from my perl program in o

[Perl-unix-users] Getting all the arguments of a process

2002-07-08 Thread Pierre-Philippe Ravier
Hi, I tried to use the Process Perl module on Solaris 8. While it works well, there is a limitation : The cmndline variable, which contains the command-line of the process we are getting informations from, is limited to 80 chars. While this is a limitation we also find in the 'ps' program, it d

[Perl-unix-users] How to clear the screen ?

2002-06-06 Thread Pierre-Philippe Ravier
I am writing a Perl program on Solaris 8, and I would like to know the best way to clear the screen at will during the execution of the Perl program. I found that doing : system("clear") will do the job, but it's dirty and probably slow. Is there a better way ? (maybe with the termcap stuff). _