[SOLVED] sed -i not available in solaris 5.10


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting [SOLVED] sed -i not available in solaris 5.10
# 8  
Old 10-03-2012
The sed command didn't work for you because the relative address +2 is a non-standard GNU sed extension. However, the standard ed text editor supports this type of addressing. And since ed can write to the file it's editing, there's no need to move files around.

Code:
printf '%s\n' 'g/hello world/.,+2s/^/#/' w | ed -s list.txt

The same thing in the more readable/maintainable heredoc format:
Code:
ed -s list.txt <<'EOED'
g/hello world/ .,+2 s/^/#/
w
EOED

If you are fine with blindly overwriting the original with sed/perl -i or mv, this is no less safe. Backups can be created before invoking ed or from within ed using the write command.

Regards,
Alister

---------- Post updated at 04:33 PM ---------- Previous update was at 04:15 PM ----------

Quote:
Originally Posted by Corona688
how about awk? Use nawk on solaris.
Code:
awk '/pattern/ {
        for(N=1; N<=3; N++)
        {
                if(N>1) getline
                print "#", $0;
        }
        next } 1' inputfile > outputfile

After a round of golf:
Code:
awk '/pattern/ && n=NR, n+2==NR {printf "#"} 1' inputfile > outputfile

Regards,
Alister

Last edited by alister; 10-03-2012 at 05:20 PM..
This User Gave Thanks to alister For This Post:
# 9  
Old 10-03-2012
Some more golf Smilie
Code:
awk '/pattern/{c=3} c-->0{printf "#"}1' infile

sed version:
Code:
sed '/pattern/{N; N; s/^/#/; s/\n/&#/g;}' infile

This User Gave Thanks to Scrutinizer For This Post:
# 10  
Old 10-03-2012
I'm loving golf!!..i got it working with nawk, although ed text editor seems to have been disabled. i'm not complaining because its resolved.

thanks all for your help and advice.

cheers
# 11  
Old 10-03-2012
Regarding golf: Nice strokes, Scrutinizer.

Regarding ed: ed? disabled? what manner of blasphemy is this?!?! Should you decide to quit your job in protest, I will send you a few bits Smilie

Kidding aside, is there a rationale for this? I am genuinely curious.

Regards,
Alister
# 12  
Old 10-03-2012
dunno mate..i'll find out ...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

[Solved] sed command help

Hello all. Im trying very hard to figure this out, but Im a newbie. I have a file that looks like this.... 6315551234 NJ224 5162224567 SUFF Im trying to put a command together that will make it into this.... UM,6315551234,,,,,NJ224,0 UM,5162224567,,,,,SUFF,0 Im all over the... (7 Replies)
Discussion started by: jay11789
7 Replies

2. Shell Programming and Scripting

[Solved] sed to replace words

Hello All, I have file named filelist.txt a.bteq.ctl b.bteq.ctl c.bteq.ctl I want to replace the word bteq to tpt in this file. I used this sed command cat filelist.txt | sed 's/bteq/tpt/g' > filelist.txt But this command deletes all records from the filelist.txt Can... (2 Replies)
Discussion started by: nnani
2 Replies

3. Shell Programming and Scripting

[Solved] sed

sed -e 's/console/raw/g' this command will replace the letter pradeep with rawat what if i want to replace a word like FRIENDS with a space simultaneously from the same file i m replacing pradeep. im doing this sed -e 's/console/raw/g' && sed 's/FRIENDS//g' but i dono why this is not happening. (2 Replies)
Discussion started by: console
2 Replies

4. Shell Programming and Scripting

[SOLVED] sed command

Help request, I have tsted this line of code for hours. The first line works and the second line returns the message " sed: command garbled.....". This is running on solaris. The "${} variables all have good values when echoed. ## /bin/sed -n '1,25p' ${file} >> ${MailFile} ... (3 Replies)
Discussion started by: millerg225
3 Replies

5. UNIX for Dummies Questions & Answers

[solved]Help with a sed command

So I have a bunch of strings in a file. Example Line ./prcol/trt/conf/conf-app/jobdefinition/trt-pre-extr-trt-step.jdef Intended Result pre-extr-trt-step So far I have parsed it out to the last bit, echo $line | cut -d'/' -f7 | cut -d. -f1Result trt-pre-extr-trt-step So I added a... (2 Replies)
Discussion started by: J-Man
2 Replies

6. Shell Programming and Scripting

[solved] how to separate using sed !

dears, hope evryone doing good in his work , i have a question about something important : how can i use 'sed' so in a script automatically it will take an enter before the number 1 in this line so 2 commands will be taken insted of one big command ?... (0 Replies)
Discussion started by: semaan
0 Replies

7. Shell Programming and Scripting

Manipulating a variable using sed (solved)

Hi, My variable has value as this: tvar1="bool_risk_enabled" Boolean "true" Now I need to replace this true with false. Which is the best way to do this? Can we do this with sed command? Please help me. ---------- Post updated at 05:23 PM ---------- Previous update was at 05:00 PM... (2 Replies)
Discussion started by: pravintse
2 Replies

8. Shell Programming and Scripting

Solved: AWK SED HELP

Hi, I need to process a file as below. Could you please help to achieve that using awk/sed commands. Input file: --------------- AB | "abcdef 12345" | 7r5561451.pdf PQRST | "fghfghf hgkjgtjhghb ghhgjhg hghjghg " | 76er6ry.pdf 12345 | "fghfgcv uytdywe bww76 jkh7dscbc 78 : nvchtry hbuyt"... (0 Replies)
Discussion started by: viveksr
0 Replies

9. Shell Programming and Scripting

[solved] remove pattern with sed

Hi, i want to remove a certain pattern when i type pwd. pwd will look like this: ..../....../....../Pat_logs/..../....../...../...... the dotted lines are just random directory names, i want it to remove the "Pat_logs/...../....../....../" part so for example: ... (8 Replies)
Discussion started by: a27wang
8 Replies

10. Shell Programming and Scripting

can this been solved with awk and sed?

Hi Masters, ___________________________________________________________________________________ Group of orthologs #1. Best score 3010 bits Score difference with first non-orthologous sequence - yeast:3010 human:2754 YHR165C 100.00% PRP8_HUMAN 100.00%... (16 Replies)
Discussion started by: mskcc
16 Replies
Login or Register to Ask a Question