Sponsored Content
Top Forums Shell Programming and Scripting Using sed to find and append or insert on SAME line Post 302975593 by Imre on Wednesday 15th of June 2016 07:15:45 PM
Old 06-15-2016
Quote:
Originally Posted by RudiC
Unfortunately it's not much clearer now, at least to me. Let me try to help by just guessing what you need, ignoring the samples you gave above.
Please be aware that sed matches case sensitive (unless told otherwise in some versions), so without extra effort it won't find the word Difficult if there's difficult in the file:
Code:
sed '/[Dd]ifficult/ s/$/Easy/' file

Here, /[Dd].../ is an address to find the relevant line(s) and append thereto.

For the second part of your question, you got me confused - there's no _DLY part nor randomcondition-OKODAT AND

If you want to prepend a string with another, use & : man sed:

Try
Code:
sed 's/-OK/_DLY&/' file

will result in _DLY-OK printed in the output.

Thanks for trying to understand me, i am actually laughing now, so thank you.
I dont know what it is with me and why i confuse people so much at times,
Sorry i am just confused now i really hate feeling like this.
I dont understand the sed pages at all, well at least i think i dont,

so maybe if i can just explain it in a form of a sentence.
1a
i want to basically append at the end of a line where the search pattern i am searching for is found, thats it.

so regardless what the line says , if i find the word rabbit i want to append the string of my choice at the very-very end of the line
1b
you just confused me with the /[Dd].../ part im sorry no offense, but i dont understand. Maybe if u show me an example or 2.... or maybe i dont need to know this.

2.
with regards to this question, what i have seems to make sense to me.
What i mean by randomcondition is that the names of the conditions are always unique they can be anything BUT they normally or always end with -OK
This is the only part i can use "-OK" where i know i would like to insert my own string to the left of the "-OK".
blahconditionname"mystring"-OK

hope it makes a bit more sense
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to insert/append line using hamilton cshell

Hi everyone I just need a script that should just search for a particular keyword in a line and after that it should add some text to the next line. I have tried it in HAMILTON CSHELL using sed "hello/a\newtext" file.txt But it give me message sed: "\" must terminate the "a"... (4 Replies)
Discussion started by: sarbjit
4 Replies

2. UNIX for Dummies Questions & Answers

sed - append text to every line

Hi all I tried this on an old version of sed on NCR Unix MP-RAS: sed -e "s/$/nnn/" file1 >file2 This file (file1): the cat sat on the mat. the cat sat on the mat. the cat sat on the mat. becomes this (file2): the cat sat on the mat.nnn the cat sat on the mat.nnn nnn the... (3 Replies)
Discussion started by: jgrogan
3 Replies

3. Shell Programming and Scripting

Sed find and insert

Hi All I'm trying to insert a pattern if a pattern is found in a file. This is my sample file "PDA"|"Celvin"|"PRJ_NA"|"Completion_Units"|25 "PDA"|"Celvin"|"PRJ_AB"|"Completion_Units"|250 I would like to output as "PDA"|"Celvin"|"PRJ_NA"|"Completion_Units"|"Done"|25... (3 Replies)
Discussion started by: Celvin VK
3 Replies

4. Shell Programming and Scripting

How to append line with sed?

Input: gstreamer-plugins-good gstreamer-plugins-bad gstreamer-plugins-ugly Output should be: gstreamer-plugins-good gstreamer-plugins-bad gstreamer-plugins-ugly How can it be done with sed? (5 Replies)
Discussion started by: cola
5 Replies

5. Shell Programming and Scripting

sed to find first appearance and append string

I have a file like below #GROUP A belongs to Asia GROUP A jojh hans local admin GROUP A gege fans michel jing jong #GROUP U belongs to USA GROUP U jeff goal hello world My requirement is to grep for first apperence of GROUP A which is not commented and append my name to end of file.... (12 Replies)
Discussion started by: vkk
12 Replies

6. Shell Programming and Scripting

find a certain line and append text to the end of the line

After I create printer queues in AIX, I have to append a filter file location within that printers custom file. within lets say test_queue.txt I need to find the row that starts with :699 and then I need to append on the end the string /usr/local/bin/k_portrait.sh. Now I've gotten the sed... (2 Replies)
Discussion started by: peachclift
2 Replies

7. Shell Programming and Scripting

sed append without using new line

im trying to append to the end of the line using sed but I want to do it without creating a new line the text to which I want to append is all in capital letters. I want to do something like this: LINE]Foo but when I do this: //a\ ] Foo it prints foo on a new line: LINE ]Foo ... (11 Replies)
Discussion started by: mrjavoman
11 Replies

8. Shell Programming and Scripting

sed - Find a String and append a text end of the Line

Hi, I have a File, which have multiple rows. Like below 123456 Test1 FNAME JRW#$% PB MO Approver XXXXXX. YYYY 123457 Test2 FNAME JRW#$% PB MO Super XXXXXX. YYYY 123458 Test3 FNAME JRW#$% PB MO Approver XXXXXX. YYYY I want to search a line which contains PB MO Approver and append... (2 Replies)
Discussion started by: java2006
2 Replies

9. Shell Programming and Scripting

sed - append line after block

Hi, I posted in another section, but no reply yet. I have an ini file with sections denoted as follows (for example) blah=blah blee=blee bloo=bloo blur=blur blaa=blaa I have ksh script that needs to append a line ${line} to the end of section ${section} I saw this... (7 Replies)
Discussion started by: andyatit
7 Replies

10. Shell Programming and Scripting

sed - How to insert line before the first blank line following a token

Hello. I have a config file (/etc/my_config_file) which may content : # # port for HTTP (descriptions, SOAP, media transfer) traffic port=8200 # network interfaces to serve, comma delimited network_interface=eth0 # set this to the directory you want scanned. # * if have multiple... (6 Replies)
Discussion started by: jcdole
6 Replies
All times are GMT -4. The time now is 11:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy