Sed utility


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Sed utility
# 1  
Old 05-04-2005
Sed utility

Hi,

Can you explain little bit with example regarding SED utility in UNIX?
How iit is different then grep command?

Thanks in advance.

Malay
# 2  
Old 05-04-2005
sed is the stream editor.

Generally used to search and replace some parameters, while its capability is enormous.

Eg. if you want to replace all a with b then

echo abca | sed 's/a/b/g'
bbcb
# 3  
Old 05-04-2005
Thanks for the reply.

Can you give me a proper link/documents where I can take a look for SED.

Malay
# 4  
Old 05-04-2005
How about
man sed
# 5  
Old 05-04-2005
Sed is the stream line editior where u can do the editing on the fly.
The power provided by sed is enormous.

Grep is used simply for pattern matching in the files.

With sed u can write ur own grep Smilie

best reference is man for the OS u r using.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Isolate text with sed or similar utility

All, I'm getting a list like the following and I'd like to kill each PID in turn. pid (17797) pid (21748) pid (21754) pid (21704) pid (2199) pid (2159) pid (17809) pid (21769) pid (21778) pid (21715) ... (3 Replies)
Discussion started by: ejianu
3 Replies

2. Shell Programming and Scripting

How to Unzip a file using unzip utility for files zipped without zip utility ?

Hi, I need to zip/compress a data file and send to a vendor. The vendor does have only unzip utility and can accept only .ZIP files. I do not have zip utility in my server. How do I zip/compress the file so that it can be deflated using unzip command ? I tried gzip & compress commands, but... (1 Reply)
Discussion started by: Sabari Nath S
1 Replies

3. Shell Programming and Scripting

POI Utility

Hi Friends, Can anyone tell me about POI utility used in Unix. Regards Sumit Mittal (1 Reply)
Discussion started by: sumit207
1 Replies

4. Shell Programming and Scripting

utility

hi experts, Can you please help me out in removing delimiters with in double quotes from a CSV file. input: ===== a,"bnn,",dgd, "sagfh,dj",ad output ===== a,"bnn",dgd, "sagfhdj",ad there are so mnay fileds in a row and there are millions of rows. Thanks in an advance.... (6 Replies)
Discussion started by: subhendu81
6 Replies

5. Shell Programming and Scripting

Sed utility

I am new to unix os. Can you explain in short about sed? with some examples. (1 Reply)
Discussion started by: Padmav
1 Replies

6. UNIX for Dummies Questions & Answers

sed utility to replace /307 with comma

Hi, I have a requirement to replace '/307' with comma ',' . for e.g. : $ cat dm.dat ------------- decimdal("\307") acct $echo $l \307 $echo $k , $sed -e "s/$l/$k/" dm.dat > dm1.dat sed: Function s/\307/,/ cannot be parsed. I want dm1.dat to be : $ cat dm1.dat (1 Reply)
Discussion started by: obedkhan
1 Replies

7. Shell Programming and Scripting

Tr utility to Encrypt

I need some help.. I would like to make a script that uses the tr utility to "encrypt" a selected file. I need to know how to set up the script so that if i type encrypt(script name) the letter that i want to start the encryption and then the file name, that it starts with the entered letter, and... (1 Reply)
Discussion started by: frankthetank115
1 Replies

8. Shell Programming and Scripting

how to replace paste utility with sed/awk

hi I have two file that I would like to paste line by line. I use to use paste for this. But my current platform will not have paste utility. Could anyone please suggest how I it can be done using sed,awk or even simple bourne shell scripts? Thanks Sabina (1 Reply)
Discussion started by: ssayeed
1 Replies

9. UNIX Desktop Questions & Answers

BRU utility

I'm having trouble trying to extract files from a bru tape. The man pages on the bru command have confused me. The following are commands that I've tried and the respective outputs. will.rlee 224> bru -vgf /dev/nrtape label: created: Mon Nov 7 18:21:41 1994 device: ... (7 Replies)
Discussion started by: sherbet808
7 Replies

10. UNIX for Dummies Questions & Answers

What utility do I use for this?

I want to pull out the 3rd column of information and stick in a file. What is the Utility I use to do this? (8 Replies)
Discussion started by: James
8 Replies
Login or Register to Ask a Question