-1
votes
1answer
19 views

what is the equivalent of the instruction sed -i in solaris? [closed]

I am searching for the equivalent of this line: sed -e /$LINE/d -i TELS/telephonenumbers.txt It works fine in Ubuntu, Fedora, OpenSUSE and cygwin, but it does not work in Solaris, I find that I can ...
0
votes
1answer
36 views

remove groups of spaces

I have a text file where I want to remove groups of 2 or more space characters for each line. Here is an example of a line: Company Management Company Management ...
-1
votes
1answer
206 views

Replacing non-ASCII characters or specific ASCII character with a space in file

I want to replace non-ASCII characters or specific ASCII characters with a space in a file using shell scripting, sed or Perl. First is to replace all non-ASCII characters with space in file. That I ...
0
votes
2answers
174 views

sed regex replace on solaris

I have a file dummy.txt containing this: "my_server"\1\"n9j7gd8kl4" "widget"\1\"vnhck67hn" "other_server"\1\"tbone" "blah"\1\"n9j7gd8kl4" "server_new"\1\"g54" "genserver"\1\"vf45s" ...
2
votes
4answers
127 views

Display all fields except the last

I have a file as show below 1.2.3.4.ask sanma.nam.sam c.d.b.test I want to remove the last field from each line, the delimiter is . and the number of fields are not constant. Can anybody help me ...
1
vote
4answers
90 views

Regex to repeat indentation in sed

This is what I want to do: If I encounter a pattern like someVarX: val1 I want to insert someVarY: val2 on the next line ...BUT HERE IS THE CATCH: someVarX: val1 can have a number preceding ...
0
votes
4answers
83 views

search string and excise beginning portion - Solaris

Another Solaris question. This is my file. /abc/123/gfh/hello/what/is/up <THIS WOULD BE WHERE A NEW LINE STARTS> bhn/fda/fds/hello/the/sky/is/blue <THIS WOULD BE WHERE A NEW LINE ...
0
votes
2answers
214 views

sed command on single line input

I am using SunOS 10. I am trying to replace the : character at the end of line if the word contains : in it on SunOs I am using the below command for it. echo -n "test:" | sed 's/:$//g' its not ...
2
votes
2answers
890 views

sed + removes all leading and trailing whitespace from each line on solaris system

I have a Solaris machine (SunOSsu1a 5.10 Generic_142900-15 sun 4vsparcSUNW,Netra-T2000). The following sed syntax removes all leading and trailing whitespace from each line (I need to remove ...
6
votes
3answers
2k views

escaping newlines in sed replacement string

Here are my attempts to replace a b character with a newline using sed while running bash $> echo 'abc' | sed 's/b/\n/' anc no, that's not it $> echo 'abc' | sed 's/b/\\n/' a\nc no, that's ...
3
votes
7answers
391 views

Bash script to select a range starting with a pattern spanning two lines and ending in a blank line. Sed?

I have a file that among other things contains entries of the following form: 2012-01-12 22:20:21,638 INFO [Tracer] something.of.interest ...some number of additional lines... <<a blank ...
2
votes
2answers
155 views

formatting files with sed/ python/ etc

I have a file which is created by a program. It contains html code and propitiatory calls to other software. In this file there are many variations of: ...
-1
votes
4answers
190 views

Replace text with sed

A program creates HTML files from a database. There are headings and stuff in between the headings. There are not a set amount of headings. After each heading the program places the text: ...
3
votes
3answers
605 views

How to use sed to delete next line on Solaris

I trying to use sed in finding a matching pattern in a file then deleting the next line only. Ex. LocationNew York <---- delete USA LocationLondon <---- deleteUK I tried sed '/Location/{n; ...
-1
votes
3answers
800 views

Command 'sed' didn't work on Solaris

I have file 'result.xml'. <date>10/19/2011 12:11:05 AM</date><name>Jack</name> I want to replace date in tag <date>10/19/2011 12:11:05 AM</date> with ...
0
votes
2answers
244 views

sed solaris 5.10

Hi I am trying to write a script to parse some html files to make a job a bit easier, but I'm having no luck, I've tried reading other threads and manuals to no avail. I seem to get stuck with ...
1
vote
1answer
64 views

Using sed Command [duplicate]

Possible Duplicate: Join lines based on pattern I have the following file: test one My two Hi three i need a way to use cat and sed to give the following output: testone Mytwo ...
1
vote
2answers
334 views

Solaris equivalent SED matching optional end string

Given the following input strings: Subject: C=AU, ST=Queensland, L=Brisbane, O=Organisation, OU=Branch, CN=Root CA/emailAddress=Support@mydept.qld.gov.au Subject: C=AU, ST=Queensland, L=Brisbane, ...
1
vote
1answer
877 views

How do I obtain the GNU gsed command in Solaris Unix

Im trying to use the gsed -n '1~4p' command to only print that line which appears every 8 lines, but apparently it can only be done with a GNU sed, but It doesn't seem that I have one, How would I ...
1
vote
9answers
5k views

how to delete a line containg string from file in unix or solaris

I have myfile as follows test1 test2 test3 test4 test5 I want to delete line containing test2, so I used command as follows, but instead of removing only 'test2' line its removed ...
2
votes
4answers
4k views

sed -i option is not working on solaris

Hi I am using sed to replace a line with NULL in a file. The command i used is sed -i "s/.shayam.//g" FILE This is working fine in linux. shayam is replaced with blank in the FILE. But when i ...
0
votes
2answers
390 views

Help with Replacing Strings on Solaris

I am on a Solaris 8 box that does not support -i option for sed, so I am using the following from a google search on the topic: # find . -name cancel_submit.cgi | while read file; do > sed ...
1
vote
2answers
620 views

sed on sun solaris

I am try to do the following on sun solaris sed "/ADDRESS/a \ PROTOCOL" file > NEW_file but I get: sed: command garbled: /ADDRESS/a PROTOCOL why (on linux its work) , ...
11
votes
2answers
6k views

sed -i + what the same option in SOLARIS

I use the following sed command in UNIX Solaris From SOLARIS machine sed -i '$ s/OLD/NEW/g' test sed: illegal option -- i can some one have idea what the illegal option in Solaris (in ...
0
votes
4answers
918 views

Changing the contents of a file with sed in Solaris 10

I have a bash script that I want to change all occurrences of jdk1.5.0_14 with jdk1.6.0_20 in a file I have the following piece of code : #!/bin/bash myvar="jdk1.6.0_20" sed "s/jdk1.*/$myvar/g" ...
3
votes
8answers
5k views

Redirect output from sed 's/c/d/' myFile to myFile

I am using sed in a script to do a replace and I want to have the replaced file overwrite the file. Normally I think that you would use this: % sed -i 's/cat/dog/' manipulate sed: illegal option -- ...