> 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
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
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).
_