Simple 'sed' script for replacing text


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Simple 'sed' script for replacing text
# 1  
Old 01-15-2009
Simple 'sed' script for replacing text

Hi All,

So I found a simple sed command to replace text in a file (http://www.labnol.org/internet/desig...-files/1128/):
Code:
sed -e 's/OLDtext/NEWtext/' -i file(s)

Because I'm lazy and don't want to remember this each time I want to do this, I wrote the following simple script (rptxt.sh):
Code:
#! /bin/bash
sed -e 's/$1/$2/' -i $3

My intention was to make it a commandline program,
Code:
rptxt OLDtext NEWtext file(s)

.
However when I run this it does replace the text and only looks in the first file (if multiple files are entered such as *.txt). Any ideas why, and how it can be fixed? Thanks.

Cheers,
ScKaSx
# 2  
Old 01-15-2009
You would need to use some sort of iteration.

For example:
Code:
for $i in `ls -A *.txt` do (rptxt foo bar) done

Note: I did not run that command. You may have to modify the syntax a bit.
# 3  
Old 01-15-2009
Quote:
Originally Posted by ScKaSx
I wrote the following simple script (rptxt.sh):
Code:
#! /bin/bash
sed -e 's/$1/$2/' -i $3

My intention was to make it a commandline program,
Code:
rptxt OLDtext NEWtext file(s)

.
However when I run this it does replace the text and only looks in the first file (if multiple files are entered such as *.txt). Any ideas why, and how it can be fixed? Thanks.

That script would not replace anything but a literal $1, and it would replace it with a literal $2. And (after replacing the single quotes with double quotes) it will only work with GNU sed. And it will break if $3 contains a space or wildcard character. Or if either $1 or $2 contains a slash.

Code:
#!/bin/bash
search=${1//\//\\/}
replace=${2//\//\\/}
shift 2
sed -i "s/$search/$replace/g" "$@"


Last edited by cfajohnson; 01-15-2009 at 07:46 PM..
# 4  
Old 01-15-2009
Thanks guys,

cfajohnson your script works great. Now i understand that I was just passing literals rather than variables. I just have two questions about the rest of the script:

(1) what does 'shift' do?
(2) how come $@ as opposed to $3?

Thanks!

Cheers,
ScKaSx
# 5  
Old 01-15-2009
Quote:
Originally Posted by ScKaSx
Thanks guys,

cfajohnson your script works great. Now i understand that I was just passing literals rather than variables. I just have two questions about the rest of the script:

(1) what does 'shift' do?
Code:
$ help shift
shift: shift [n]
    The positional parameters from $N+1 ... are renamed to $1 ...
    If N is not given, it is assumed to be 1.

Quote:
(2) how come $@ as opposed to $3?

Because you wanted to operate on more than one file. "$3" is a single argument; "$@" is all the arguments.
This User Gave Thanks to cfajohnson For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Query on using command "sed" for replacing text in bash shell

Re: Query on using command "SED" for replacing text in bash shell While using the command "sed" for find and replace, I wanted to know how one could find a constant and replace it with a variable inside the quotation syntax of sed? I wanted to replace constant 3 with variable name... (3 Replies)
Discussion started by: achandra81
3 Replies

2. Shell Programming and Scripting

Replacing filename with sed in bash script

I need to cat two files with similar names. I am using the following script: #!/bin/bash if ] then file=$1 file2="${file%R1.fastq}R2.fastq" echo fetching data from R2 file ... sleep 3 cat $file $file2 > infile else echo "Input_file passed... (2 Replies)
Discussion started by: Xterra
2 Replies

3. Shell Programming and Scripting

Simple sed script question

Script newbie, so I'm sure I'm missing something obvious here, but how come this simple script does not work? #!/bin/bash ... (3 Replies)
Discussion started by: KidCactus
3 Replies

4. UNIX for Dummies Questions & Answers

Simple script to write new lines in a text file

Hello, I have a comma seperated data sheet with multiple fields of biological data. One column contains the ID name of the sample, where there could be more than one sample separated by a comma. I would like a script that reads this field, and for each sample ID, copies the entire line and writes... (18 Replies)
Discussion started by: torchij
18 Replies

5. UNIX for Dummies Questions & Answers

Simple version control script for text files

HI guys, Could you help me writing a simple version control script for a text files. the format could be ./version_control <file(s)> (I want it to be able to work with more than 1 file at the same time) commands are add and get, add means you add new file(s) to the archive, get means you... (4 Replies)
Discussion started by: s3270226
4 Replies

6. UNIX for Dummies Questions & Answers

Script for replacing text in a file based on list

Hi All, I am fairly new to the world of Unix, and I am looking for a way to replace a line of text in a file with a delimited array of values. I have an aliases file that is currently in use on our mail server that we are migrating off of. Until the migration is complete, the server must stay... (8 Replies)
Discussion started by: phoenixjc
8 Replies

7. UNIX for Dummies Questions & Answers

best method of replacing multiple strings in multiple files - sed or awk? most simple preferred :)

Hi guys, say I have a few files in a directory (58 text files or somthing) each one contains mulitple strings that I wish to replace with other strings so in these 58 files I'm looking for say the following strings: JAM (replace with BUTTER) BREAD (replace with CRACKER) SCOOP (replace... (19 Replies)
Discussion started by: rich@ardz
19 Replies

8. Shell Programming and Scripting

selective replacing text using sed/perl

Hi, I have the following text which I want to search and replace using perl and sed. I would appreciate any help. Please notice the file contains schema name with a single dot and a double dot . &&WEBDIR_SCHEMA. and &&WEBDIR_SCHEMA .. } I would like to change it to the acutal schema... (5 Replies)
Discussion started by: jville
5 Replies

9. Shell Programming and Scripting

Unix Script for replacing text in files

Dear Experts, I am new to unix shell programming. I need to write a script which needs to edit 4 text files. File 1:- PCH_Test.txt File 2:- PCT_Test.txt File 3:- PCY_Test.txt File 4:- PCW_Test.txt PCH_Test.txt First it needs to get into PCH_Test file and prefix the 6th coloumn... (2 Replies)
Discussion started by: phani333
2 Replies

10. Shell Programming and Scripting

sed: Replacing two lines of text

I just created a file in vi, looks like this: Hello nobody nobody What I need is to have sed change the file so it looks like this: Hello everybody In other words, the sed query needs to look for both instances of "nobody" before it puts the word "everybody" on the first line. ... (2 Replies)
Discussion started by: calrog
2 Replies
Login or Register to Ask a Question