Print first output


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Print first output
# 1  
Old 05-24-2011
Tools Print first output

Hello,
II did a grep and got a lot of values
i.e
aa bb cc dd ee

and i want to print first only aa and afterward only bb etc...

help!
# 2  
Old 05-24-2011
Hi,
If you want help, please give us - the input sample, the command you used, the actual output, and finaly the desired output.
Thanks.
# 3  
Old 05-24-2011
Code:
 `grep 'ORA-' /opt/gppeup/gpp/log/paypluserrors.log |   awk '{print $2}' | awk -F';' '{print $2}'`

output:


Code:
MPB851 MPB874 MPB875 MPB874 MPB874 MPB874 MPB874 MPB872 MPB875 MPB850 MPB875 MPB874 MPB872 GPPQSERVIC GPPCLMSGLO MPB874 MPB851 GPPQSERVIC GPPQSERVIC MPB874 GPPQSERVIC GPPQSERVIC GPPQSERVIC GPPQSERVIC GPPQSERVIC MPB874 GPPQSERVIC GPPQSERVIC GPPQSERVIC MPB874 MPB875 MPB850 MPB874 MPB851 MPB850 MPB874 MPB851 MPB874 MPB875 MPB872 MPB850 MPB874 GPPQSERVIC MPB851 MPB872 MPB850 MPB874 MPB851 MPB872 MPB875 MPB874 MPB850 MPB874 MPB851 MPB872 MPB874 MPB850 MPB851 MPB875 MPB872 MPB874 MPB850 MPB851 MPB872 MPB851 MPB874 GPPQSERVIC GPPQSERVIC GPPQSERVIC MPB875 GPPCLMSGHA GPPQSERVIC GPPQSERVIC GPPQSERVIC GPPCLMSGHA GPPCLMSGHA GPPQSERV

i want to use the values one by one.

Last edited by pludi; 05-24-2011 at 08:23 AM..
# 4  
Old 05-24-2011
please use [/CODE] after [CODE] and give the actual output and the desired output.
And don't forget a sample of the input file.
# 5  
Old 05-24-2011
Code:
`grep 'ORA-' /opt/gppeup/gpp/log/paypluserrors.log |   awk '{print $2}' | awk -F';' '{print $2}'`

Output:
MPB851 MPB874 MPB875 MPB874 MPB874 MPB874 MPB874 MPB872 MPB875

requested output:
MPB851
and then another outpit with the second value:
MPB874 etc...
# 6  
Old 05-24-2011
If there is not too much values you can use
Code:
for i in $(grep 'ORA-' /opt/gppeup/gpp/log/paypluserrors.log |   awk '{print $2}' | awk -F';' '{print $2}'); do echo $i; done

But give a sample of the input file so we can change the original line to do the job.
# 7  
Old 05-24-2011
this prints the all valus and not only the first one.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Print output as columns

Normal grep is not working to get the output. Sample Input: newjob: abc command name: a=b+c newjob: bbc command name: c=r+v newjob:ddc newjob:kkc command name: c=l+g newjob:mdc newjob:ldc newjob:kjc command name: u=dl+g newjob:lkdc newjob:lksdc command name: o=udl+g (6 Replies)
Discussion started by: onesuri
6 Replies

2. Programming

Print only some strings from an output

Hi, Here is an example: I have a grep line: grep -i -r -H "$WORD" "$DIRECTORY"with an output like this: /media/dir/dir2//dir4/file.txt:/media/dir/dir2/dir3/file_16072008/es6.txt: "content of the file found from grep"/media/dir/dir2/dir3/dir4/file3.txt:/media/dir/dir2/dir3//file.txt:"other... (3 Replies)
Discussion started by: Hornys
3 Replies

3. UNIX for Dummies Questions & Answers

Any awk one liner to print df output?

Hi, OS = Solaris Can anyone advise if there is a one liner to print specific output from a df -k output? Running df from a command line, it sometimes gives me 2 lines for some volume. By re-directing the output to a file, it always gives 1 line for each. Below is an example output,... (4 Replies)
Discussion started by: newbie_01
4 Replies

4. Shell Programming and Scripting

Awk script to run a sql and print the output to an output file

Hi All, I have around 900 Select Sql's which I would like to run in an awk script and print the output of those sql's in an txt file. Can you anyone pls let me know how do I do it and execute the awk script? Thanks. (4 Replies)
Discussion started by: adept
4 Replies

5. Shell Programming and Scripting

filtering print output

I have these data below and i want my output to print only the 3rd files. For example, in /opt/home/nyfix/.k5login, i want to print only "nyfix". /opt/home/nyfix/.k5login /opt/home/security/.k5login /opt/home/noc/.k5login what is the appropriate command in shell scripting ? (2 Replies)
Discussion started by: linuxgeek
2 Replies

6. Shell Programming and Scripting

print an output

A txt file is having the columns like this TABLENAME COLUMNS DATATYPE TAB1 COL1 INTEGER COL2 INTEGER COL3 INTEGER COL4 ... (5 Replies)
Discussion started by: rocking77
5 Replies

7. Shell Programming and Scripting

du to print some of output

The output of du -b file* | awk '{print $1}' is: 1501090 1500538 I want the result to be a sum of this column. ie the o/p should be 3001628 Any idea? (3 Replies)
Discussion started by: xs2punit
3 Replies

8. UNIX for Dummies Questions & Answers

awk {print $NF} output??

Hi, I am trying to debug an old script and have found the problem lies within this function: isIdoc() { # validate the file type fileType=`file $1 | awk '{print $NF}'` && echo 0 || echo 1 } My question is, how can I determine what is in the variable $fileType ? The program is... (1 Reply)
Discussion started by: vervette
1 Replies

9. Shell Programming and Scripting

using perl or awk to print output

suppose u have file File A A -> G C->D A -> R P->A File B A=1 C=2 D=3 E=4 F=5 G=6 H=7 I=8 K=9 L=10 M=11 (5 Replies)
Discussion started by: cdfd123
5 Replies

10. UNIX for Dummies Questions & Answers

How do i print this output all on the same line?

I have this simple script which gives info on HBA ports. How do i get it all to print on the same line? !#/bin/ksh TMP_INFOFILE=/tmp/tmpfile if ; then rm -f $TMP_INFOFILE touch $TMP_INFOFILE fi PORT_INFOFILE=/tmp/aa if ; then rm -f $PORT_INFOFILE ... (1 Reply)
Discussion started by: rcon1
1 Replies
Login or Register to Ask a Question