Skip to Content
Shell Scripting: Expert Recipes for Linux, Bash, and More
book

Shell Scripting: Expert Recipes for Linux, Bash, and More

by Steve Parker
August 2011
Beginner to intermediate
600 pages
14h 29m
English
Wrox
Content preview from Shell Scripting: Expert Recipes for Linux, Bash, and More

prtstat

The prtstat utility is a very useful utility that provides the same information as the script in the preceding section, but is an external binary. It is part of the psmisc project, which also provides fuser, killall, and pstree. You could get the CPU number from prtstat by piping it through grep and awk, which is easier than taking responsibility for correct parsing of a relatively long and complicated set of variables, although it does look a little less tidy, and involves spawning three different binaries, whereas the shell script in the preceding section spawns no processes at all.

prtstat $$ 
Process: bash          State: S (sleeping) 
  CPU#:  1          TTY: 136:1   Threads: 1 
Process, Group and Session IDs 
  Process ID: 2168          Parent ID: 2063 
    Group ID: 2168          Session ID: 2168 
  T Group ID: 2999 
Page Faults 
  This Process    (minor major):     4539         0 
  Child Processes (minor major):   114675        55 
CPU Times 
  This Process    (user system guest blkio):   0.07   0.14   0.00   0.93 
  Child processes (user system guest):         4.56   0.67   0.00 
Memory 
  Vsize:       19 MB     
  RSS:         2412 kB            RSS Limit: 18446744073709 MB 
  Code Start:  0x400000           Code Stop:  0x4d8c1c  
  Stack Start: 0x7fffb27ae720 
  Stack Pointer (ESP): 0x7fffb27ae300    Inst Pointer (EIP): 0x7fe37fa9a36e 
Scheduling 
  Policy: normal 
  Nice:   0          RT Priority: 0 (non RT) 
$ 
$ prtstat -r $$ | grep processor: | awk '{ print $2 }'  ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Linux Command Line and Shell Scripting Techniques

Linux Command Line and Shell Scripting Techniques

Vedran Dakic, Jasmin Redzepagic
Linux Shell Scripting Cookbook - Third Edition

Linux Shell Scripting Cookbook - Third Edition

Clif Flynt, Sarath Lakshman, Shantanu Tushar

Publisher Resources

ISBN: 9781118166321Purchase bookDownloads