Sponsored Content
Top Forums Shell Programming and Scripting pstree but without other children of ancestors Post 302727265 by bakunin on Tuesday 6th of November 2012 04:55:23 AM
Old 11-06-2012
You can probably do it by implementing your own logic: "-f" will give you a output format of "ps" where not only the PID but also the PPID (parent PID) is listed. With this information you can build your own (sub-)tree.

From a certain parent PID search for every process with this PID in the PPID field to get all the children, then repeat this for every child recursively to get your subsection of the tree. If you don't find any children to a process it is one of the "leaves" of the tree and the recursion ends.

The only thing you need to know at the beginning is the PID of the "root" process you want to start your tree with.

I hope this helps.

bakunin
 

8 More Discussions You Might Find Interesting

1. Programming

Father & children

Hello, i should finished this program, if anyone could tell me whats wrong... This is an optional university work, though i cant leave this nearly finished. I need to see where is my error :( What my program should do. The user must type "num_proc" ( number of children). The program creates a... (4 Replies)
Discussion started by: Jariya
4 Replies

2. Red Hat

pstree unreadable characters

hi all, i executed this command "pstree" on redhat ent 4 and i got this below with unreadable chars: init─┬─acpid â”─amqzxma0─┬─amqrrmfa │ â”─amqzdmaa │ â”─amqzfuma │ â”─5* │ â”─amqzmgr0─┬─amqpcsea │ │ ... (2 Replies)
Discussion started by: itik
2 Replies

3. Linux

pstree problem

hi friends i want to know that which user has loggged from real terminal(konsole) using pstree please help me. (1 Reply)
Discussion started by: praneshmishra08
1 Replies

4. Shell Programming and Scripting

Killing process and children

Hi all, I have been searching all day for a nice solution to this problem. I have three scripts. A start script, a child script and a stop script. Script A (scripta.sh) Its Child Script B (scriptb.sh) Script C (kill_process.sh $PID) Script A correctly traps the kill command sent from... (6 Replies)
Discussion started by: mark007
6 Replies

5. UNIX for Advanced & Expert Users

difference between pstree and pstree.x11

anyone knows? both commands lies in /usr/bin (3 Replies)
Discussion started by: crackthehit007
3 Replies

6. UNIX for Dummies Questions & Answers

How to use pstree command?

Hi, How to use the pstree command. I tried to execute as below, not able to interpret/understand the output. pstree -p | grep 525 OUTPUT: $ pstree -p | grep 525 ââscsi_eh_0(525) Can anyone throw some light on this? Many thanks. Rgds, (1 Reply)
Discussion started by: venkatesht
1 Replies

7. Shell Programming and Scripting

Doing simple math for children.

Hello! I saw that there were a few differente ways to do math within bash scripts. expr and bc are possibilities. But which one to use when? I want to make an simple bash script for children to do math. The script must ask only questions like 1*1= till 10*10= ... No + or - or /... (10 Replies)
Discussion started by: ugurgazi
10 Replies

8. Shell Programming and Scripting

Script using pstree

Hi guys I am trying to write a script using pstree. I understand what pstree does and how to write the command etc but I want to have a script which adds up all of the processes in the tree to get a whole number instead of the tree list which would normally come out. What I have done so far... (3 Replies)
Discussion started by: simpsa27
3 Replies
PSTREE(1)							   User Commands							 PSTREE(1)

NAME
pstree - display a tree of processes SYNOPSIS
pstree [-a|--arguments] [-c|--compact] [-h|--highlight-all|-Hpid|--highlight-pid pid] [-g]--show-pgids] [-l|--long] [-n|--numeric-sort] [-p|--show-pids] [-s|--show-parents] [-u|--uid-changes] [-Z|--security-context] [-A|--ascii|-G|--vt100|-U|--unicode] [pid|user] pstree -V|--version DESCRIPTION
pstree shows running processes as a tree. The tree is rooted at either pid or init if pid is omitted. If a user name is specified, all process trees rooted at processes owned by that user are shown. pstree visually merges identical branches by putting them in square brackets and prefixing them with the repetition count, e.g. init-+-getty |-getty |-getty `-getty becomes init---4*[getty] Child threads of a process are found under the parent process and are shown with the process name in curly braces, e.g. icecast2---13*[{icecast2}] If pstree is called as pstree.x11 then it will prompt the user at the end of the line to press return and will not return until that has happened. This is useful for when pstree is run in a xterminal. OPTIONS
-a Show command line arguments. If the command line of a process is swapped out, that process is shown in parentheses. -a implicitly disables compaction for processes but not threads. -A Use ASCII characters to draw the tree. -c Disable compaction of identical subtrees. By default, subtrees are compacted whenever possible. -G Use VT100 line drawing characters. -h Highlight the current process and its ancestors. This is a no-op if the terminal doesn't support highlighting or if neither the cur- rent process nor any of its ancestors are in the subtree being shown. -H Like -h, but highlight the specified process instead. Unlike with -h, pstree fails when using -H if highlighting is not available. -g Show PGIDs. Process Group IDs are shown as decimal numbers in parentheses after each process name. -p implicitly disables com- paction. If both PIDs and PGIDs are displayed then PIDs are shown first. -l Display long lines. By default, lines are truncated to the display width or 132 if output is sent to a non-tty or if the display width is unknown. -n Sort processes with the same ancestor by PID instead of by name. (Numeric sort.) -p Show PIDs. PIDs are shown as decimal numbers in parentheses after each process name. -p implicitly disables compaction. -s Show parent processes of the specified process. -u Show uid transitions. Whenever the uid of a process differs from the uid of its parent, the new uid is shown in parentheses after the process name. -U Use UTF-8 (Unicode) line drawing characters. Under Linux 1.1-54 and above, UTF-8 mode is entered on the console with echo -e '33%8' and left with echo -e '33%@' -V Display version information. -Z (SELinux) Show security context for each process. This flag will only work if pstree is compilied with SELinux support. FILES
/proc location of the proc file system AUTHORS
Werner Almesberger <werner@almesberger.net> Craig Small <csmall@enc.com.au> BUGS
Some character sets may be incompatible with the VT100 characters. SEE ALSO
ps(1), top(1). Linux 2012-05-20 PSTREE(1)
All times are GMT -4. The time now is 05:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy