ps command on linux


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers ps command on linux
# 1  
Old 03-27-2003
ps command on linux

Hello everyone,

Simple I think? The ps command on linux seem to cut off the full command and makes grep useless, unlike Solaris. Here is an example:

Solaris

ps -aef|grep blue
larry 7111 1 0 Mar 26 ? 0:00 xterm -fg white -bg black -cr blue -j -s -sl 100

Linux

ps -aef|grep blue
nothing, but when I do just < ps -aef|grep whit > I get

larry 6064 5561 0 13:00 pts/0 00:00:00 xterm -fg white -bg black -cr bl


It cut off the blue. Is there a way for ps to display all and be able to grep for it?
# 2  
Old 03-27-2003
Try ps -aefw | grep blue.
# 3  
Old 03-28-2003
Thanks oombera,

I did not see the w option when I did a man on ps.
# 4  
Old 03-28-2003
You're welcome - the -w option stands for "wide output".
# 5  
Old 03-28-2003
On fairly recent Linux versions, using the /proc filesystem, you can do this:
Code:
{ cat /proc/<PID>/cmdline; echo; } |tr "\0" " "

 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Linux find command seems to not transmit all the result to the '-exec command'

Hello. From a script, a command for a test is use : find /home/user_install -maxdepth 1 -type f -newer /tmp/000_skel_file_deb ! -newer /tmp/000_skel_file_end -name '.bashrc' -o -name '.profile' -o -name '.gtkrc-2.0' -o -name '.i18n' -o -name '.inputrc' Tha command... (3 Replies)
Discussion started by: jcdole
3 Replies

2. UNIX for Beginners Questions & Answers

Simple sed command not working; could be a Mac/Linux vs. PC/Linux issue

Hello, I am on a Mac and trying to clean up some monthly files with a very simple SED: sed '3,10d;/<ACROSS>/,$d' input.txt > output.txt (from the input, delete lines 3 - 10; then delete from the line containing <ACROSS> to the end of the file) then output to output.txt Even when I try... (2 Replies)
Discussion started by: verbatim
2 Replies

3. Shell Programming and Scripting

Linux command needed

guys im new here and i need help with some linux commands. filea has keyword on each line identity aaa bbb ccc i have following commands. egrep 'www.identity' ~/home/m3 >~/home/lopo2 wc -l file ~/home/lopo2 say lopo2 has 44 lines then output saved is identity 44 (1 Reply)
Discussion started by: ahfze
1 Replies

4. Programming

how to use linux command in c++?

I wonder how can u use linux's command like "clear" in c++. (3 Replies)
Discussion started by: nishrestha
3 Replies

5. Shell Programming and Scripting

Linux Command Error for nawk command

Hi All We are migrating our projects from unix environment to linux. I tried running a install script which sets up my project, i.e. the directory structure and all. But in the middle of the script i started receiveing following error : nawk: command not found . So i need to know which... (1 Reply)
Discussion started by: vee_789
1 Replies

6. Shell Programming and Scripting

F1 in Linux command

Hi, In my root directory i have folder1, folder2, folder3. The folder1 has folder1.1, folder1.2, folder1.3 subdirectories. Similary folder2 has folder2.1, folder2.2, folder2.3 etc. Same for rest of the folders. I have many such folders like folder4, folder5.......upto folder30 in my root... (3 Replies)
Discussion started by: keshi
3 Replies

7. UNIX for Dummies Questions & Answers

linux command

whats mean of ll -lart and ll -alrt ? (3 Replies)
Discussion started by: amol munde
3 Replies
Login or Register to Ask a Question