GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Operating System  >  Solaris Admin

 Print  |  
Question:  what does "ps'"display when used without options or arguments



May 05, 2008 06:37:50 #1
 sooraj_mohammed   Member Since: May 2008    Total Comments: 1 

RE: what does "ps'"display when used without options or arguments
 
ps - reports process status

   Without  options, ps prints information about processes that have the same effective user ID  and  the  same  controlling terminal  as  the invoker. The output contains only the process ID, terminal identifier, cumulative execution time, and the   command  name.

Example output:
# ps
   PID TTY         TIME CMD
 20092 pts/3       0:00 sh
 18249 pts/3       0:00 ps
     

 

Back To Question