script to capture certain output


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting script to capture certain output
# 15  
Old 08-14-2008
Annihilannic,
thanks for your help.. from the output.out, only current disk % is displayed, there's no output for CPU and Mem..

[UXHUBT01:fara]/home/support/fara#pg output.out
UXHUBK01 Current
-------------------------------------------------------------------------------
Disk 1%

Top disk user: PID 24728, hublogd 14.2 IOs/sec S - Select a Disk

UXHUBK01 Current
-------------------------------------------------------------------------------
Disk 3%

Top disk user: PID 25712, hub_masterd 16.2 IOs/sec S - Select a Disk

UXHUBK01 Current
-------------------------------------------------------------------------------
Disk 2%

Top disk user: PID 25712, hub_masterd 17.2 IOs/sec S - Select a Disk

UXHUBK01 Current
-------------------------------------------------------------------------------
Disk 2%

Top disk user: PID 25712, hub_masterd 16.3 IOs/sec S - Select a Disk

UXHUBK01 Current
-------------------------------------------------------------------------------
Disk 3%

Top disk user: PID 25712, hub_masterd 20.3 IOs/sec S - Select a Disk
# 16  
Old 08-14-2008
I suspect its because your glance output really looks like this:

Code:
B3692A Glance C.04.70.000       02:45:40 hostname 9000/800   Current  Avg  High
-------------------------------------------------------------------------------
CPU  Util   SSSSSARUUUUUUUUU                                  | 31%   31%   31%
Disk Util   FFFFFFFFFFFFFFFFFF                                | 35%   35%   35%
Mem  Util   SSSSSSUUUUUUUUUUUUUUUUUUUB                        | 52%   52%   52%
Swap Util   UUUUUUUUUUUUUUUUURRRRRRRRRR                       | 54%   54%   54%
-------------------------------------------------------------------------------
                                                                  IO BY FILE SYSTEM                                                       Users=   14
Idx   File System            Device               Type     Logl IO     Phys IO
--------------------------------------------------------------------------------
   1 /                       /dev/vg00/lvol4      vxfs    25.5/ 25.5   6.6/  6.6

Notice how there are two spaces between "CPU" and "Util"?

Change this line and it should fix it:

Code:
/^(CPU|Disk|Mem) +Util/ { print $1, $5 }

# 17  
Old 08-14-2008
Moral of the story is... post sample data or code using [ code]code goes here[ /code] tags without the spaces)!
# 18  
Old 08-15-2008
Annihilannic,
it's working! Smilie

sorry i was not aware of the correct output since those were the output files that i was given. i'm more on aix, and this one is for hp-ux..

thank you very much Smilie

[UXHUBT01:fara]/home/support/fara#pg output.out
15:02:45 UXHUBK01 Current
-------------------------------------------------------------------------------
CPU 50%
Disk 1%
Mem 49%

Top disk user: PID 24728, hublogd 14.2 IOs/sec S - Select a Disk
# 19  
Old 08-15-2008
and to bakunin, broli and vidyadhar85,
thank you as well Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Grep -P does not capture the desired output

Hi, I'm trying to filter the following output to only display information about an alarm where the Status: corresponds to Set. -------------------------------------------------------- Description: hw_optics: RX POWER LANE-0 LOW ALARM Location: Optics0/0/0/21... (6 Replies)
Discussion started by: sand1234
6 Replies

2. Shell Programming and Scripting

Capture output from expect script

Hi I am new to Expect scripting. I have to connect to a remote server and capture the output. Here I need output of " send "list registered\r"" to be stored in a file. but after execution, /tmp/capture.txt is of 0 byte #!/usr/bin/expect spawn ssh abc@10.10.10.10 -p 5022 expect... (2 Replies)
Discussion started by: bns928
2 Replies

3. Shell Programming and Scripting

Want ro capture the debug in output file

I want to capture the debug for the below command in output file . i tried like this but its not working: sh -xv <scriptname> >> output.log i want the output in a log file. Anyone plz help in this (2 Replies)
Discussion started by: chakkaravarthy
2 Replies

4. Shell Programming and Scripting

How to capture output to log file

Hi I have a script that will run multiple unix & sql commands. I want to see the output as well as capture it to a log file for further analysis. Is there an easy way to do that instead of adding "tee -a logfile" on everyline or even on the execute line (i.e. script | tee -s logfile). Thanks (1 Reply)
Discussion started by: nimo
1 Replies

5. Shell Programming and Scripting

Script to capture snoop output

Hi Everyone :), Need your advice as I'm new to UNIX scripting.. I'm trying to write a script to capture snoop output for 5 minutes for every hour for 24 hours. To stop snoop, I need to press Control-C to break it. This is what I got so far, but now I'm stuck! :confused: The script: # cat... (2 Replies)
Discussion started by: faraaris
2 Replies

6. Shell Programming and Scripting

Enter the command to capture output--help

&& echo "PLEASE enter the command to capture output" || echo "Processing your command manual" x=$# echo $x while do while man $@ | read -r line do >$@.txt ... (1 Reply)
Discussion started by: rrd1986
1 Replies

7. Shell Programming and Scripting

Capture Shell Script Output To A File

Hi, I am running a shell script called dbProcess.sh which performs shutdown and startup of various Oracle instances we have.At the time of execution the script produces the following output to the command line window $./dbProcess.sh stop #### Run Details ###### Hostname : server-hop-1... (4 Replies)
Discussion started by: rajan_san
4 Replies

8. UNIX for Advanced & Expert Users

Capture output to file and printer

Hi All : I wanted a unix command by which I could be able to print the output to a file and at the same time to a printer. Any help will be greatly appreciated. Regards, Ramamurthy Dasari (1 Reply)
Discussion started by: rdasari
1 Replies

9. Shell Programming and Scripting

Capture scp output

I have a simple script that uses scp to copy some files from one server to another. I want to capture the files that are copied but simple redirection to a file does not work. So I want to capture this output from the scp command in a log file. -bash-3.00$ scp -pr /export/jumpstart/Files... (7 Replies)
Discussion started by: Tornado
7 Replies

10. Shell Programming and Scripting

Capture output from interactive script

I have written a menu driven script to walk users through bringing up and down an application process. Sometimes the user tells me the script does not work taking the application down, but he can't recall seeing an error message. Is there a way to capture std out and stderr out from an... (6 Replies)
Discussion started by: MizzGail
6 Replies
Login or Register to Ask a Question