Not able to insert new line using sed in Sun Solaris


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Not able to insert new line using sed in Sun Solaris
# 1  
Old 02-23-2012
Not able to insert new line using sed in Sun Solaris

Hi Guys,

can any one know how to replace the string by newline using sed ?

i dont need any other solution. I am very curious to know this in sed.

Code:
Input:
one,two,three
 
Output
one
two
three

Code:
we can acheive this by awk but in sed ?,
awk '{gsub(/\,/,"\n");print;}' File

In linux, the below code working but in not my solaris system.

Code:
sed 's/\,/\n/g' File

My system is
Code:
uname -a
SunOS cube 5.9 Generic_117171-07 sun4u sparc SUNW,Sun-Fire-480R

Thanks guys for the help Smilie

Cheers,
RangaSmilie
# 2  
Old 02-23-2012
Code:
 
$ echo "a,b,c,d" | sed 's#,#\
#g'
a
b
c
d

 
$ uname
SunOS

# 3  
Old 02-23-2012
sed

Quote:
Originally Posted by itkamaraj
Code:
 
$ echo "a,b,c,d" | sed 's#,#\
#g'
a
b
c
d
 
 
$ uname
SunOS

when i execute the above command it throws error

Error Msg:
sed: Ending delimiter missing on substitution: s#,#

is there any other way other than this cos i tried this already and didn't get desired output.
# 4  
Old 02-23-2012
Code:
 
$ echo "a,b,c,d" | sed 's#,#\
#g'

after the second hash # press \ and enter then third hash # then g then single quote '
# 5  
Old 02-23-2012
sed

Yes got it.
i have to use the above command in shell mode right ?
after execute the sh command. before this i din't done it.
Thanks Yar Smilie

Last edited by rangarasan; 02-23-2012 at 04:43 AM..
# 6  
Old 02-23-2012
can you post the entire command you tried. ( everything with error message )
# 7  
Old 02-23-2012
Quote:
Originally Posted by itkamaraj
can you post the entire command you tried. ( everything with error message )
Yes got it.
i have to use the above command in shell mode right ?
after execute the sh command. before this i din't done it.
Thanks Yar Smilie

1. execute sh command
2. echo "a,b,c,d" | sed 's#,#\
#d'

Is this the only way to do this in sed ?

Last edited by rangarasan; 02-23-2012 at 04:55 AM.. Reason: given detailed explanation for future users.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Using sed to find and append or insert on SAME line

Hi, $ cat f1 My name is Bruce and my surname is I want to use SED to find “Bruce” and then append “ Lee” to the end of the line in which “Bruce” is found Then a more tricky one…. I want to INSERT ….a string… in to a line in which I find sometihng. So example $ cat f2 My name is... (9 Replies)
Discussion started by: Imre
9 Replies

2. Solaris

sed insert into line 1 via script

Hi I am trying to run a sed command within a script..unfortunately it wasn't written on Solaris so doesn't work. Can anyone help with the correct coding please? It is: sed -i '1i ROWID;ORDER_ID;JOB_NAME;ORDER_TABLE' ${OUTFILE} (4 Replies)
Discussion started by: Grueben
4 Replies

3. UNIX for Dummies Questions & Answers

Using sed to insert at position x and then every interval y for each line

Thanks to help from Don Cragun in post 302924174, I'm off and getting into trouble on my own (finally) with sed. Here is my goal - insert \\r\n at the 60th character on each line and then every 76th character thereafter: Input:... (3 Replies)
Discussion started by: gusbrown
3 Replies

4. 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

5. Shell Programming and Scripting

sed insert new line does not update file

Hi all, I have a file called "text.cpp" with the first line of "1" afterwards I tried in Ubuntu to type the following sed '12iasdasdasdasdsad' test.cpp > output.txt however when I tried to see the result of output.txt #cat output.txt 1 why is the line 12 is not updated to the... (6 Replies)
Discussion started by: peuceul
6 Replies

6. Shell Programming and Scripting

Insert @Line # - SED (non-GNU)

Just posted on another fellow's question using ed, but I wanted to know about doing it with sed on Unix. For example - I have a file of an unknown length, but I want to add a line after the shell declaration (Line 2). If possible, I'd like the example to be able to just substitute in a number and... (2 Replies)
Discussion started by: Vryali
2 Replies

7. Shell Programming and Scripting

Using sed to insert text file at first line

sed '1r file.txt' <source.txt >desti.txt This example will insert 'file.txt' between line 1 and 2 of source.txt. sed '0r file.txt' <source.txt >desti.txt gives an error message. Does anyone know how 'sed' can insert 'file.txt' before the first line of source.txt? (18 Replies)
Discussion started by: psve
18 Replies

8. AIX

insert a line with variables using sed

Hi, I have to insert a line having variables using sed. But the variables are not getting substituted within sed. Ex: n=2 sed $n' i\ hi' file This works. But the below code does not work. n=2 line=hello sed $n' i\ $line' file The above code inserts '$line' in the 2nd line of the... (9 Replies)
Discussion started by: sugan
9 Replies

9. Shell Programming and Scripting

sed insert text at particular line

I know that sed -n '12p' file will print line 12 but how might I insert text to a specified line? thanks (2 Replies)
Discussion started by: action_owl
2 Replies

10. Shell Programming and Scripting

sed - how to insert chars into a line

Hi I'm new to sed, and need to add characters into a specific location of a file, the fileds are tab seperated. text <tab> <tab> text <tab> text EOL I need to add more characters to the line to look like this: text <tab> <tab> newtext <tab> text <tab> text EOL Any ideas? (2 Replies)
Discussion started by: tangentviper
2 Replies
Login or Register to Ask a Question