query on sed command


 
Thread Tools Search this Thread
Operating Systems Solaris query on sed command
# 1  
Old 06-13-2008
Bug query on sed command

I have done a script using sed which replaces a string in file.
I face 2 problems, while using sed command.

1)last line of the file is missing.
2)if i am are using wild card character in the command, Its not taking the next matching pattern ie if I am giving the pattern abc*def to be replaced with abcXdef : and the input file contains:-

abctttttttttttdefmmmmmmmmmabcttttttttttdef

the o/p i am expecting is abcXdefmmmmmmmmmabcXdef

but the o/p I am getting is abcXdef.


the first problem is getting solved when i put an enter in the last line in the file. But i am having pratical difficulty that Its ahecking almost 600files.


My script code is giving below

script.sh
.................................

#!/bin/sh

find /opt/users/adm5tca1/simulator/OSDI/OSDISimulator/jakarta-tomcat-5.0.28/webapps/OSDI_SIM/WEB-INF/classes/workarea/ -name 'ResponseBody.txt' 2>/dev/null > pathy.txt
FILE_NAME=pathy.txt

while read a_line ; do

echo $a_line
/usr/bin/sed -e 's!<ns6\:originatingOrderLines><ns6\:item>.*<\/ns6\:item><\/ns6\:originatingOrderLines>!<ns6\:originatingOrderLines><ns6\:item>DEFAULT<\/ns6\:item><\/ns6\:originatingOrderLines>!g' $a_line > bb.txt
mv bb.txt $a_line


done < $FILE_NAME

.................................................

Can anyone plz help me in solving out.

Last edited by vino; 06-13-2008 at 04:40 AM.. Reason: disabled smilies
# 2  
Old 06-13-2008
This query is a duplicate of https://www.unix.com/shell-programmin...#post302204979

Last edited by spirtle; 06-13-2008 at 06:05 AM.. Reason: duplicate
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

sed for query

Hi all, I am trying to remove quite a lot of numbers for a file I have which looks something along the lines of; 1,2,3,4,5,6 etc I have a list of numbers I want removing looking like; 10000 10987 16572 etc etc and have been trying to run; for id in `cat list` ; do sed -i -e... (8 Replies)
Discussion started by: JayC89
8 Replies

3. Shell Programming and Scripting

SED Query

Hi all, I am trying to use SED to input lines to a file in a specific place. So far I have; sed '/#NewEntry/ i\Insert this line' myfile.txt The output is printing to screen correctly but what is the best way to write it back to the file without overwriting everything? I tried adding >... (6 Replies)
Discussion started by: JayC89
6 Replies

4. OS X (Apple)

Sed query

Hello Im fairly familiar with using the sed command for substitution, however I have been passed a script which checks the logged on username and directory type with a sed section which I cant figure out. The sed function has me baffled and I cant find out from the man page what its trying to do... (1 Reply)
Discussion started by: costaanglais
1 Replies

5. Shell Programming and Scripting

sed query

I have a sed query. There is a line which has tilde and I want to separate this line using sed. The line is: ABP_ETC_ROOT=~xdmadm The query to get this line is: sed -n '/\(.*\)~\(.*\)/p' infile I want to get xdmadm from this line and I am using this sed command: sed -n... (5 Replies)
Discussion started by: som.nitk
5 Replies

6. Shell Programming and Scripting

sed query

hi i had posted this earlier.. got no reply !! how to change assigned value in a file using sed suppose the file contains age = 30; how to change it to age =50; i tried sed 's/^age*./age =50;' filename but i am getting the o/p as age =50; 30; plz hlp!! (4 Replies)
Discussion started by: gopsman
4 Replies

7. Shell Programming and Scripting

query on sed

I have done a script using sed which replaces a string in file. I face 2 problems, while using sed command. 1)last line of the file is missing. 2)if i am are using wild card character in the command, Its not taking the next matching pattern ie if I am giving the pattern abc*def to be replaced... (2 Replies)
Discussion started by: iceiceice
2 Replies

8. Shell Programming and Scripting

SED query

I'm writing a script which word counts the number of lines in two files. If one file is bigger than the other I'd like to edit one of the files to delete some lines to make both the same. It does not matter where in the file the lines are deleted from. It's expected that this will be ran from... (3 Replies)
Discussion started by: chog1010
3 Replies

9. Shell Programming and Scripting

sed query

I have a series of folders /temp/a /temp/b /temp/c In folders a, b, and c, I have files a1.txt..........a20.txt b1.txt..........b40.txt & c1.txt..........c60.txt Each file has the same data format :- Line 1 AAAAA aaaa Line 2 BBB bbbbbb Line 3 CCCC cccccc Etc etc I need to write a... (13 Replies)
Discussion started by: grinder182533
13 Replies

10. Shell Programming and Scripting

sed query..

hi, I have an xml file and I need to replace the tags with different names all at a time here is what I have <cevalue> <cevalue1> <cevalue2> <cevalue3> <cevalue4> <cevalue5> and I need these like these... <cevalue> <cevalue> <cevalue> <cevalue> <cevalue> <cevalue> I tried a few but... (2 Replies)
Discussion started by: mgirinath
2 Replies
Login or Register to Ask a Question