Embed cmd into sed replacement to have dynamic substitution


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Embed cmd into sed replacement to have dynamic substitution
# 8  
Old 10-03-2012
Thanks rdrtx1 and Corona688! Now I think I get the whole picture of the script.
If go back to my original question, the command ($RANDOM|md5sum) was not embedded in the sed substitution part. And my code
Code:
sed 's/^$/'">$(date | md5sum)"'/g'

is not dynamic which does not count either. I read some of the post about embedding cmd in AWK script. Is that possible for SED too, say embeding a perl script in it to make it work? Thanks again!

Last edited by yifangt; 10-03-2012 at 04:14 PM.. Reason: add detail
# 9  
Old 10-03-2012
Quote:
Originally Posted by yifangt
Thanks rdrtx1 and Corona688! Now I think I get the whole picture of the script.
If go back to my original question, the command ($RANDOM|md5sum) was not embedded in the sed substitution part. And my code
Code:
sed 's/^$/'">$(date | md5sum)"'/g'

is not dynamic which does not count either. I read some of the post about embedding cmd in AWK script. Is that possible for SED too, say embeding a perl script in it to make it work? Thanks again!
You cannot embed commands inside a sed expression and expect sed to execute them itself. If you manage to get them executed at all, it will be the shell that executes them, and only once, before sed runs.

I could probably cook up what you wanted in awk, if I knew what you wanted. Perl is overkill in most cases.
# 10  
Old 10-03-2012
Thanks Corona!
What I want is to replace all the blank rows with different unique strings to match the different sequences of every other row. The one rdrtx1 posted worked well except the replacement is not unique to each other, which is believed from the part:
Code:
echo $RANDOM|md5sum

Please post your awk script, if you can. Thanks a lot!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

sed replacement inplace

I need to make permanent changes in the file after find and replace using sed. for this i am using sed -i However this is not working. says sed: illegal option -- i I am working on Sun Solaris uname -a SunOS aspsun14 5.10 Generic_150400-13 sun4u sparc SUNW,SPARC-Enterprise any other work... (3 Replies)
Discussion started by: gotamp
3 Replies

2. Shell Programming and Scripting

Incomplete replacement/substitution awk

Hi! (I'm just a newbie in awk & bash scripts) I have a script which replaces one column from an input file with a specified one from the same file. The input and the desired output files are shown below. ~ cat input.file random text Fe 1.33 23.23 3.33 C 21.03 23.23 3.33 Cu 0.00 ... (2 Replies)
Discussion started by: radudownload
2 Replies

3. Shell Programming and Scripting

SED replacement of placeholders

Hi All, I am facing a problem while using SED in Linux. I have a property file which contains a string local.mds.dir=${basedir}/deployCompositesIt has be to replaced with another string, and value of that string should be initialized at runtime. So I use placeholder there. My substituted... (2 Replies)
Discussion started by: bhaskar_m
2 Replies

4. Shell Programming and Scripting

SED replacement

Hi, i have a file with lines, file.txt ------- test is fun testing is better I need to replace 'test' to 'develop' and i used, a=test b=develop sed "s,$a,$b,g" -------- but i see the word 'testing' is also replaced. Need some solution. Is there any way i could replace only 'test' ? (4 Replies)
Discussion started by: giri_luck
4 Replies

5. Shell Programming and Scripting

Replacement with sed

I am trying to replace the line which has string "tablespace" not case senstive.... with below simple script: mysrcipt.sh sed "s/.*/TABLESPACE USERS/g" create_table > tmp mv tmp create_table Is there any better way to do it? If Search string tooooooo long it will be tough to code in... (4 Replies)
Discussion started by: ganeshd
4 Replies

6. Shell Programming and Scripting

Help with sed replacement

This seems like it should be an easy problem, but I'm a noob and I can't figure it out. I'm trying to use sed, but would be happy to use anything that does the job. I am trying to trim off a fixed number of unknown characters from 2 different : delimited fields while keeping the intervening... (4 Replies)
Discussion started by: helix_w
4 Replies

7. UNIX for Dummies Questions & Answers

i am not getting any idea how to do the following with SED cmd

hi friends i am not getting any idea about how to implement the following with the help of SED cmd 1)need a sed command that deletes the first character in each line in a file 2)need sed command that deletes the character before the last character in each line in a file ... (7 Replies)
Discussion started by: sankar_vitam
7 Replies

8. UNIX for Dummies Questions & Answers

sed cmd

write the sed command for swapping the first and 2nd (fields)words in the following file input file cse1 rama 1223 cse2 raju 2453 cse3 sita 3523 i tried with this $sed 's/ \(*\)/ \(*\)/ \2,\1' myfile1 but not getting th required... (4 Replies)
Discussion started by: sankar_vitam
4 Replies

9. Shell Programming and Scripting

Need Replacement for sed

Hi Can anyone provide me the replacement of sed with xargs perl syntax for the below sed -e :a -e '/;$/!N;s/\n//; ta' -e 's/;$//' This should be without looping has to take minimal time for search (0 Replies)
Discussion started by: dbsurf
0 Replies

10. UNIX for Dummies Questions & Answers

Replacement using sed

Hi I have the following file that i need to run a sed command on 1<tab>running 2<tab>running 3<tab>running 4<tab>running I want to be able to replace a line i.e the second one with '2<tab>failed'. As the first number is unique that can be used to search for the relevant line (using ^2 i... (5 Replies)
Discussion started by: handak9
5 Replies
Login or Register to Ask a Question