sed remove


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sed remove
# 1  
Old 04-11-2008
sed remove

anyone out there knows how to remove pattern <random string> use sed?
# 2  
Old 04-11-2008
Removes string "random string" :
Code:
sed 's/random string//g' inputfile

Removes lines xontaining "random string" :
Code:
sed '/random string/d' inputfile

Jean-Pierre.
# 3  
Old 04-11-2008
Quote:
Originally Posted by aigles
Removes string "random string" :
Code:
sed 's/random string//g' inputfile

Removes lines xontaining "random string" :
Code:
sed '/random string/d' inputfile

Jean-Pierre.
I have a file with many pattern like <...>
"random string" is just an example
I want to know how to delete every thing in between < and > also "<" and ">".
<first>a<second>b<3rd>
<4th>c
becomes
ab
c

Thanks

Last edited by jamwong; 04-11-2008 at 05:02 PM..
# 4  
Old 04-11-2008
Try :
Code:
sed 's/<\([^>]*\)>/\1 /g' inputfile

Jean-Pierre.
# 5  
Old 04-11-2008
Quote:
Originally Posted by aigles
Try :
Code:
sed 's/<\([^>]*\)>/\1 /g' inputfile

Jean-Pierre.
Hi aigles,

Thanks for the code.
Sorry, I made a mistake in my example.
The code deletes < and > but it does not delete the content within <>. I'm having trouble to figure out how to remove <, > and the stuff with in.
# 6  
Old 04-11-2008
Code:
sed 's/<[^>]*>//g' inputfile

Jean-Pierre.
# 7  
Old 04-11-2008
Quote:
Originally Posted by aigles
Code:
sed 's/<[^>]*>//g' inputfile

Jean-Pierre.
brilliant~
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Remove space with sed

Hello Folks , myfile contains 1000000 records as follows: logver=56 idseq=63256 itime=1111 devid=TG-40 devname=PUI-C2 vd=USER date=2019_01_10 time=18:39:49 logid="000013" type="traffic" subtype="forward" level="notice" eventtime=134 srcip=1.1.1.1 srcport=1 srcintf="XYX-CORE.01"... (3 Replies)
Discussion started by: arm
3 Replies

2. Shell Programming and Scripting

sed remove everything between two string

Hi all, I have this input: "203324780",,"89321213261247090146","VfdsD150","0D","fd3221","V0343","aaa","Direkt","fsa","2015.02.27","39833,54454,21214",,,"fd","NORMAL","D","10fd","1243 Flotta","HiĂĄnytalan","2013.02.25",,"2013.02.25","2013.02.24","2013.02.28",,"SajĂĄt... (4 Replies)
Discussion started by: snayper
4 Replies

3. UNIX for Dummies Questions & Answers

How to remove certain lines using sed?

Hi I have the following kind of line sin my file . print ' this is first'. print ' this is firs and next ' ' line continuous '. -- this is entire print line. print ' this is first and next ' ' line continuous and' 'still there now over'. -- this 3lines together a single print line. ... (5 Replies)
Discussion started by: Sivajee
5 Replies

4. Shell Programming and Scripting

Need to remove a character using sed

Hi All, I have output like this below ldprod/03 ldprod/02 ldprod/01 ldprod/00 ldnprod/ ldnprod/030 I want only remove all character including / ldprod ldprod ldprod ldprod ldprod ldnprod (8 Replies)
Discussion started by: ranjancom2000
8 Replies

5. Shell Programming and Scripting

Remove the Characters '[' and ']' with Sed

Hi, I am new to Sed and would like to know if it is possible to remove the characters . I have a couple of files with a keyword and would like to remove the substring. I am Using sed s/// but Its not working Thanks for your Support Andrew Borg (2 Replies)
Discussion started by: andrewborg
2 Replies

6. Shell Programming and Scripting

using sed to remove lines

Can somebody explain why my sed command is not working. I do the folloinwg: Generates a binary file to /tmp/x1.out /usr/lib/sa/sa2 -s 4:00 -e 8:00 -i 3600 -A -o /tmp/x1.out decodes the file (no problem so far) sar -f /tmp/x1.out When I do this it does not appear to delete the... (4 Replies)
Discussion started by: BeefStu
4 Replies

7. Shell Programming and Scripting

sed to remove

Hello I have a file with records...The records have several lines and have start and end born... This is a template: 000000001 LDR L ^^^^^nam^^2200325Iia^45e0 000000001 022 L $$a0081-3397 000000001 041 L $$aSPA 000000001 088 L $$aJ.E.N. 551 000000001 090 L $$aINFORMES JEN... (22 Replies)
Discussion started by: ldiaz2106
22 Replies

8. Shell Programming and Scripting

sed over writes my original file (using sed to remove leading spaces)

Hello and thx for reading this I'm using sed to remove only the leading spaces in a file bash-280R# cat foofile some text some text some text some text some text bash-280R# bash-280R# sed 's/^ *//' foofile > foofile.use bash-280R# cat foofile.use some text some text some text... (6 Replies)
Discussion started by: laser
6 Replies

9. Shell Programming and Scripting

sed to remove character ['

I have a huge file where the each column has data in the format: . I want to remove the from each value. How do I do it with sed? thanks (2 Replies)
Discussion started by: manishabh
2 Replies

10. Shell Programming and Scripting

how to remove ^@ from a file using sed...or anything

i tried the following:- sed -e file 's/^@//g' > temp also tried sed -e file 's///g' > temp nothing happened....can someone please tell me wht is wrong??? also someinformation abt the character "^@"(it is ONLY ONE character and NOT TWO characters) thanx in advance.. (13 Replies)
Discussion started by: sayonm
13 Replies
Login or Register to Ask a Question