SED help needed


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SED help needed
# 1  
Old 11-15-2005
Question SED help needed

Could someone please tell me the command to delete a line with a specific word and also deleting all lines below this line? I want this to be done without opening the file itself using SED in HP Unix?

e.g. I have a text file input.txt and with 4 lines of text below:

John 123 A--G
Chris 190 C--T
Mat 098 F--K
Mike 674 B--N
Pat 838 L--U

I want to delete the line which has string "098" and all lines below this line to look like the below:

John 123 A--G
Chris 190 C--T
# 2  
Old 11-15-2005
I think below code can cater to ur need.

csplit filename "/`grep 098 filename`/"

will create files with xx prefix xx00 file will contain what u need.
# 3  
Old 11-15-2005
This will help u ...

sed '/098/,$ d' filename

this deletes all lines starting from the first line having 098 uptill the end of file ...
# 4  
Old 11-15-2005
Thanks everyone!
It worked!
# 5  
Old 11-15-2005
Question

Could someone please tell me how to make a Korn Shell to do the below:

I have the files below with the same format (different data) as mentioned previously and I want a shell to run "sed '/098/,$ d' filename" on all of the files in the directory.

list20051001.txt
list20051002.txt
list20051003.txt
...
list20051031.txt
# 6  
Old 11-16-2005
Hi
Try the following:
for filename in `ls directory `
do
sed '/098/,$ d' $filename > $filename.1
mv $filename.1 $filename
done
# 7  
Old 11-16-2005
Question

Niyati
Thanks for your replay.
However I get the error below and it isn't working:


./testshell.ksh[4]: ls /MyFolder/Test.1: cannot create
mv: ls: cannot access: No such file or directory
mv: /MyFolder/Test.1: cannot access: No such file or directory
mv: ls: cannot access: No such file or directory


Below is the contents of testshell.ksh:

#!/bin/ksh
for filename in 'ls /MyFolder/Test'
do
sed '/098/,$ d' $filename > $filename.1
mv $filename.1 $filename
done


Below is the contents of /MyFolder/Test directory:
list1.txt list12.txt list2.txt list3.txt


Any help will be appreciated.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed Help Needed

I want to search texts between first occurence of the matching pattern and replace it with some other text.pls advice what can be done. I searched alot, i could not find anything relevant. Ex my input is as follows: red yellow grey white blue red pink violet white I want to search... (9 Replies)
Discussion started by: sangitajc
9 Replies

2. Shell Programming and Scripting

some sed help needed

I have file with following contents; 127.0.0.1 www.google.com 127.3.3.1 www.cisco.com 127.3.5.1 www.msnbc.com I want output as 127.0.0.1 www.google.com google.com 127.3.3.1 www.cisco.com cisco.com 127.3.5.1 www.msnbc.com msnbc.com I tried sed 's/www.//g'... (5 Replies)
Discussion started by: sangfroid
5 Replies

3. Shell Programming and Scripting

help needed with SED

Hello! I have a "problem" with sed... In a log, I'm wondering how to have the name of the application when "INCIDENT" is in the file... The name of the application is before "INCIDENT". For this example, The result should be "SPVP0005" thanks for your help! (7 Replies)
Discussion started by: Castelior
7 Replies

4. Shell Programming and Scripting

Help needed on SED

Hi, I would like to process one file which looks like this : 09-04-16-17:11:53 -> count 1 NAME CHAN QID NMSGS NBYTES MAXBYTES P/T W_DEALNUM 105 123508770 1 10 14 P W_APPSTAT 106 123508771 1 12 35 P... (8 Replies)
Discussion started by: vive123
8 Replies

5. Shell Programming and Scripting

Help Needed in SED

Hi All , I have a input file which has set of lines like this :: cat a.txt unix1 djkdfkjdkkdfkdjfdfkjd 09191091 unix@unix.com <2008-23-07> unix 2 dfdfdfdfdfdfdfdfdfd unix3 dfldfljdflkjdfldfkljdfldjfl 0565606 unix1@unix.com <2008-10-09> unix4 dfdlfndfldflnlffddfd for some... (4 Replies)
Discussion started by: raghav1982
4 Replies

6. UNIX for Dummies Questions & Answers

SED Help Needed

I am trying to retrieve part of a line from /boot/grub/menu.lst The line is : gfxmenu (hd0,0)/usr/share/gfxboot/themes/pclinuxblue/boot/message I have figured out how to get this line into a file by itself. sed '/gfxmenu/ !d' /boot/grub/menu.lst > /tmp/menu.lst.pcl_tc What I need to... (2 Replies)
Discussion started by: Tide
2 Replies

7. Shell Programming and Scripting

help with sed needed

Hi, I have a file in a form of jkkhjjk1:!:jkhdjkhjkh2:!:kljkljkljklj3:!:kljsdj4 kljlkfljf5:!:kjljljlj6:!:jhjkhjkh7 I am trying to use sed command such that everytime it find ":!:" it will removes it and print remaining of the line on the new line Output that I need will look like following... (8 Replies)
Discussion started by: arushunter
8 Replies

8. Shell Programming and Scripting

Help Needed -sed

Hi All, i have one file and in that i have to read each line and do some replacement. its is not fixed the number or column always be same it can be less also exm a;b;c;d;e;f (line) i have to do something like In the line If c is present then go to end of line and append ';date' else... (9 Replies)
Discussion started by: ravi.sadani19
9 Replies

9. Shell Programming and Scripting

Sed help needed

Could someone tell me how to replace varibles using SED inside Korn Shell? e.g. I have a ksh file program.ksh below: ------------------------------------ #!/bin/ksh sed -n '/ABC/p' $1 > output.txt if ] then status=new elif ] then status=old fi sed -n '/$status/p' $1... (5 Replies)
Discussion started by: stevefox
5 Replies

10. UNIX for Dummies Questions & Answers

Help needed with sed

Hi, I need to insert a line into a file underneath an existing line in the file, but am unsure as to the syntax. I'm pretty sure sed can be used though, although any ideas are more than welcome. For example: File ---- Line 1 Line 2 Line 3 Line 4 Line 6 I need to say: Insert "Line 5"... (1 Reply)
Discussion started by: danhodges99
1 Replies
Login or Register to Ask a Question