SED multiple find and replace


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SED multiple find and replace
# 8  
Old 11-25-2011
Try this in that case... I mean server name issue... Smilie
Code:
sed 's/_\([[:alpha:]]*[0-9][0-9]*\)/ \1/' input_file

--ahamed
# 9  
Old 11-25-2011
Quote:
Originally Posted by ahamed101
Try this in that case... I mean server name issue... Smilie
Code:
sed 's/_\([[:alpha:]]*[0-9][0-9]*\)/ \1/' input_file

--ahamed
Hey All,

Thanks for the assist - this is works a treat.

However just so I understand can you give me a brief explaination of some of the switch options you used:

sed 's/_\
what does the _\ do?

([[:alpha:]]*[0-9][0-9]*
I assume this means any alpha character followed by a number between 0-9 and and another number 0-9 and * means anything?
# 10  
Old 11-25-2011
as per my understanding if you are looking for multiple replacement and change in a single command this shall work
sed -e "s/cat/lion/g" -e "s/yes/no/g' -e 's/true/false/g' -e ....... -i.backup actual_file

will do all the replacement and keep a backup of your file, named actual_file.backup

offcourse its up to you, how good you are able to write the regular expression, more accurate less errors and surprises, but it will be fun, welcome to sed
its tricky first time, try to keep a backup manually :-)
# 11  
Old 11-25-2011
_ is just an underscore.

\( ... \) marks a sub-pattern, and stores the matched text for later use (\1 in the replacement text).

* is 0 or more occurrances of the previous regular expression.

[[:alpha:]]*[0-9][0-9]* - 0 or more alphabetic characters followed by 1 or more digits.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Find and replace from multiple files

Hello everybody, I need your help. I have a php site that was expoited, the hacker has injected into many php files a phishing code that was discovered and removed in order to have again a clean code. Now we need to remove from many php files that malware. I need to create a script that find and... (2 Replies)
Discussion started by: ninocap
2 Replies

2. Shell Programming and Scripting

Find and replace in multiple files

Hi, I have php files in main dir and sub dir's as well. I need to find "new mysqli('localhost', 'System', 'xxxxxx', 'System', '3306');" and replace as "new mysqli('localhost', 'unx_sys', 'yyyy', 'unx_sys', '3306');" I tried like: sed 's/new mysqli\(*\)\;$/new... (1 Reply)
Discussion started by: ashokvpp
1 Replies

3. Shell Programming and Scripting

find and replace - multiple combinations

Hello all, I'm trying to replace all possible combinations of specific character occurrences within a string with another character, that is: For the following string: ABCAACD I want to replace all the possible combinations of the character 'A' with the character 'G', so the output... (3 Replies)
Discussion started by: hagit
3 Replies

4. Shell Programming and Scripting

Replace multiple lines through sed

Hi All, I have a input file as sample below <this is not starting of file> record line1 line2 line3 end line4 line5 record line6 line7 line8 my requirement is this, i want to select a pattern between first record and end, whatever is written between first record and end. and... (0 Replies)
Discussion started by: adgangwar
0 Replies

5. Shell Programming and Scripting

using sed to find and replace multiple numbers

I have looked around and there are several examples of how to use sed, but I don't think any of them help me very much with what I am trying to do. I have a text file like this.... 1! SRCNAM = 00001 ! 1! X = 50.0000, 0.0000,... (10 Replies)
Discussion started by: mercury.int
10 Replies

6. Shell Programming and Scripting

Script to find & replace a multiple lines string across multiple php files and subdirectories

Hey guys. I know pratically 0 about Linux, so could anyone please give me instructions on how to accomplish this ? The distro is RedHat 4.1.2 and i need to find and replace a multiple lines string in several php files across subdirectories. So lets say im at root/dir1/dir2/ , when i execute... (12 Replies)
Discussion started by: spfc_dmt
12 Replies

7. Shell Programming and Scripting

Find and replace multiple lines

I have a section of text in file A, see below # falkdjf lkjadf lkjadf lkajdf lkajdf lkajdf lkjadf lkjadf 234.234.2.234 lkjlkjlk 234.234.3.234 # Only the first line with "# falkdjf lkjadf lkjadf" is unique in the file. The new section that I want to overwrite the old section above is in... (1 Reply)
Discussion started by: jyang72211
1 Replies

8. Shell Programming and Scripting

sed multiple replace

Hello! I'm using sed to perform a lots of replaces in one text file. I call it this way: sed -f commands.txt in.txt > out.txt commands.txt has about 1000 lines, each one is some variation of: s/from/to/gI And in.txt has about 300 000 lines. So the problem is that operation takes about... (7 Replies)
Discussion started by: backdrift
7 Replies

9. Shell Programming and Scripting

Help with find and Replace using sed

I have to update a paramater (dateMemLimit) present in a file, with a date (YYYYMMDD) equal to 5 days before the sysdate. The parameter will be in the following format. dateMemLimit = 20091201 Please note the blank spaces present between 'dateMemLimit' &'=' and between '='... (4 Replies)
Discussion started by: rajesh8s
4 Replies

10. Shell Programming and Scripting

sed find and replace multiple lines

I am new to linux and would like to modify the contents of a file preferably using a one line. The situation is as follows <start> some lines "I am the string" "replace string" more lines here <end> In the above example,On encountering "I am the string", the "replace string "should be... (6 Replies)
Discussion started by: supersimha
6 Replies
Login or Register to Ask a Question