help one liner...


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting help one liner...
# 1  
Old 06-08-2011
help one liner...

Hi I have a log data that shows chunks of data like this:

thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example testthisis example test, this is example test, this is example test
12
6 thisis example test, this is example test, this is example test
6 thisis example test, this is example test, this is example test

thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example test
thisis example test, this is example test, this is example test
2500
1000 thisis example test, this is example test, this is example test
1000 thisis example test, this is example test, this is example test
200 thisis example test, this is example test, this is example test
200 thisis example test, this is example test, this is example test
100 thisis example test, this is example test, this is example test


I am interested in printing the chunk of data that contains a number (lonely number) larger than 2000.

The chunk always end on a new line. but the size of the chunk is variable and I need to focus on the lonely number>2000 but print the whole chunk.

Please only use bash commands, and awk,sed or grep. I don't want python or perl. Thanks
# 2  
Old 06-08-2011
Code:
awk '/^[0-9]+$/ { if ($0 > 2000) print }'

# 3  
Old 06-09-2011
This will print all the lines where there is a lonley number which is greater than 2000

Code:
 
awk 'chunk=$0{gsub(/[^0-9]/,"");{if($0> 2000){print chunk}}}'  filename

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell one liner help

Hello, I am trying to sort/get some specific output from a ls command but however I am having no luck. The command I am using is 'ls -al /nim/dr/mksysb/\*'|grep -e _dr -e .tgz|cut -c37-90|cut -d" " -f2-8|cut -d_ -f1 the error is bash: ls -al /nim/dr/mksysb/\*: No such file or directory ... (1 Reply)
Discussion started by: hasn318
1 Replies

2. Shell Programming and Scripting

PERL one liner

hi, I am using PERL one liner for oracle database connection as : $PERL -e "use DBI; DBI->connect(qw(DBI:Oracle:SID user passwd));" is there a way to append select statement to this connection ? i.e. DB connection and select stmt in one line ? how to do sysdba connection using one lines... (1 Reply)
Discussion started by: talashil
1 Replies

3. UNIX for Advanced & Expert Users

Curl one liner

Hi I am trying to write a curl one-liner that will help me to input the password after intiating the upload. Also this curl job needs to run on the background and transfer the verbose output to a file. So we can tail the file and check the status if required. This is curl command that I am... (1 Reply)
Discussion started by: cutechaps
1 Replies

4. Shell Programming and Scripting

Search & Replace regex Perl one liner to AWK one liner

Thanks for giving your time and effort to answer questions and helping newbies like me understand awk. I have a huge file, millions of lines, so perl takes quite a bit of time, I'd like to convert these perl one liners to awk. Basically I'd like all lines with ISA sandwiched between... (9 Replies)
Discussion started by: verge
9 Replies

5. Shell Programming and Scripting

Need a one liner

abc/abc1/abc2/abc3/abc4 i need a script to pick this above path when ever any patterns like the below will be found. abc/abc1 abc/abc1/abc2 abc1/abc2/abc3 abc2/abc3/abc4 abc2/abc3/ etc .... etc..... not only the above 5 but like these one.. any one liner will be of great... (1 Reply)
Discussion started by: debu182
1 Replies

6. UNIX for Dummies Questions & Answers

need an awk one liner

example input file: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 (3 Replies)
Discussion started by: kenneth.mcbride
3 Replies

7. UNIX for Dummies Questions & Answers

one-liner for my script

Hi all, Happy weekend. I have the following sample.txt file which contains the students name and their marks of different subjects. kamaraj@kamaraj-laptop:~/Desktop/testing$ cat sample.txt kamaraj 34 kamaraj 35 kamaraj 56 raj 32 raj 324 raj 93 raj 93 test 1 test 1 test 1 test... (5 Replies)
Discussion started by: itkamaraj
5 Replies

8. UNIX for Dummies Questions & Answers

awk one liner

I need a one liner to" find /pattern/ print from x lines before "pattern" to y lines after "pattern" (3 Replies)
Discussion started by: kenneth.mcbride
3 Replies

9. Shell Programming and Scripting

awk one liner

input a 100 200 300 b 400 10 output a 100 a 200 a 300 b 400 b 10 Thanx (6 Replies)
Discussion started by: repinementer
6 Replies

10. Shell Programming and Scripting

1 liner question

This works: nslookup `uname -n`|tail -2|awk -F: '{print $2}' This does not aa=`nslookup `uname -n`|tail -2|awk -F: '{print $2}'` Why??? Solaris v10 Thanks Brandt (6 Replies)
Discussion started by: beppler
6 Replies
Login or Register to Ask a Question