From: nish.parikh on
Hi,

I have some process running.

When I do a ps -aef |grep <username>, I see those processes. However I
dont see the full name and commandline of the processes. It gets
truncated.

Is there any way to see the full command line of my processes?

I am using unix (solaris).

Thanks,
Nish.

From: Jorgen Moquist on
nish.parikh(a)gmail.com wrote:
> Hi,
>
> I have some process running.
>
> When I do a ps -aef |grep <username>, I see those processes. However I
> dont see the full name and commandline of the processes. It gets
> truncated.
>
> Is there any way to see the full command line of my processes?
>
> I am using unix (solaris).
>
> Thanks,
> Nish.
>
yes, /usr/ucb/ps -auxwwwg
or
/usr/ucb/ps -auxwwwge
will view your envinments for the process.
/jýrgen
From: barts on

Use pargs (1)... it will tell you everything about the command line,
environment, etc.

- Bart

From: Jeff H on
/usr/ucb/ps -axwwwu | grep username


nish.parikh(a)gmail.com wrote:
> Hi,
>
> I have some process running.
>
> When I do a ps -aef |grep <username>, I see those processes. However
I
> dont see the full name and commandline of the processes. It gets
> truncated.
>
> Is there any way to see the full command line of my processes?
>
> I am using unix (solaris).
>
> Thanks,
> Nish.

From: nish.parikh on
Thanks Jeff. Your reply was very very useful.

Where can I find pargs by the way? I could not find it anywhere on my
solaris machine.

Thanks,
nish.
Jeff H wrote:
> /usr/ucb/ps -axwwwu | grep username
>
>
> nish.parikh(a)gmail.com wrote:
> > Hi,
> >
> > I have some process running.
> >
> > When I do a ps -aef |grep <username>, I see those processes.
However
> I
> > dont see the full name and commandline of the processes. It gets
> > truncated.
> >
> > Is there any way to see the full command line of my processes?
> >
> > I am using unix (solaris).
> >
> > Thanks,
> > Nish.