Handy one liner scripts to extract various process attributes. You can add additional attributes to the 'ps' command to get other attributes. Below are some samples
-- Process start hour
ps -eo pgid,lstart,cmd | grep "[p]name" | awk '{print $5}' | cut -d\. -f1
-- Process start minute
ps -eo pgid,lstart,cmd | grep "[p]name" | awk '{print $5}' | cut -d\. -f2
--process start day
ps -eo pgid,lstart,cmd | grep "[p]name" | awk '{print $4}'
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment