Sed (Stream EDitor) is a command line editor for POSIX environment. Sed processes one or more files according to an editing script and writes the results to standard output. Created at Bell Labs, it has been around since the mid-70s.
0
votes
1answer
27 views
Best way to change words into numbers using specific word list
I have a text file that contains tweets per line, that need to be altered for a machine learning format. Im using python and basic unix text manipulation (regex) to achieve a lot of my string ...
0
votes
2answers
22 views
How to use sed to enter content after specific content?
I currently can use sed to do a replace like this:
sed -i 's/find/replace/g' /file
Is is possible to find content such as http { and insert the following after it with sed?
...
1
vote
4answers
93 views
Extracting lines from text files in a folder based on the numbers in another file
I have a file ff.txt that looks as follows
*ABNA.txt
356
24
36
112
*AC24.txt
457
458
321
2
ABNA.txt and AC24.txt are the files in the folder named foo1. Based on the numbers in the ff.txt ...
0
votes
3answers
39 views
sed command works fine on Ubuntu but not Mac
I know nothing about Sed but need this command (which works fine on Ubuntu) to work on a Mac OSX:
sed -i \"/ $domain .*#drupalpro/d\" /etc/hosts
I'm getting:
sed: 1: "/etc/hosts": extra characters ...
3
votes
4answers
59 views
Detect if a series of numbers is sequential in bash/awk
So I have a series of scripts that generate intermediary text files along the way as a means of storing information across different scripts. Essentially the scripts detect rows within data that have ...
0
votes
3answers
45 views
grep or sed — need to extract a particular text
How would I extract only a substring of matched text.
I have an XML file with multiple lines. However this is what I am concerned with.
<url>/localhost/index.html</url>
I tried
cat ...
1
vote
1answer
38 views
Regex to replace |foo| with abs(foo)
I've got a large LaTeX document, and I'm looking to change the formatting of places where I've used absolute-value notation. Ideally I'd do this automatically, but I'm unsure of how to construct the ...
0
votes
3answers
43 views
Trying to use sed to convert temperature from sensors command to number
I have a script that I wrote for OS X using 'tempmonitor' that I'm trying to convert for use with lm-sensors under Ubuntu.
This is the original OS X script, reading ambient sensor temperatures on ...
-1
votes
3answers
53 views
how to find specific lines when it hits a certain pattern
whenever it see a pattern of ; and abc[0] i need to print first line just after ; and a line which contain abc[0].
i have something like this
blah blah;
blah blah blah;
xyz blah blah,
blah blah
...
0
votes
3answers
41 views
OR matches with BSD sed
I'm trying to filter out the lines in a file that match the regular expression:
DROP (CONSTRAINT|INDEX)
With gnu sed, this works:
gsed -e '/DROP \(CONSTRAINT\|INDEX\)/d' < myfile.sql
However, ...
1
vote
5answers
62 views
Find and update(append) csv with shell script
Input file:
ID,Name,Values
1,A,vA|A2
2,B,VB
Expected output:
1,A,vA|VA2|vA3
2,B,VB
Search file for a given ID and then append a given value in the values {field}
use case : append ...
0
votes
1answer
45 views
How to edit tar files in Unix using SED without untarring them?
How to edit tar files in Unix using SED without untarring them?
I want to change the timestamp available in each of the files in .tar as well as in the filenames.
3
votes
0answers
49 views
Which encoding in regex pattern/reading the file does the grep/sed/awk/perl group of tools use by default?
Is it possible to switch the encoding for the regex pattern/reading the file or should I decode everything to the common format (kind of ASCII)?
0
votes
2answers
39 views
using sed to add the results of a grep to the 2nd line in a file
I need to add 3 lines returned from a grep command to the 2nd line of a file. I have the following somewhat working however getting sed to add the line to my file has been troubling. Any help is ...
0
votes
3answers
28 views
Use Sed to modify a line that has an initial space and contains a comma
This should be extremely simple, but for the life of me I just can't get gnu-sed to do it this afternoon.
The file in question has lines that look like this:
PART NUMBER ...
1
vote
2answers
39 views
sed command that works for Solaris, Linux and HPUX
I need to change a directive in a config file and got it working in Linux but in Solaris, it says command garbled.
Here is the directive
enable-cache passwd yes
I need to ...
2
votes
5answers
50 views
Using sed to replace part of the line previous to the search pattern
Really need some help with this one, trying to use sed (hope this is the best solution) to replace last comma for each block of lat longs. examples below.
Original file
;REGION
SOLID,
LAT,LONG,
...
0
votes
2answers
31 views
need to rename many files in directory using sed and find
I would like to rename all files named *-6.0.dll with *-6.1.dll
I tried:
find . -name '*-6.0.dll*' -exec mv {} $(echo {} | sed -e 's/-6.0.dll/-6.1.dll/g') \;
but this didn't work; the file names ...
3
votes
2answers
29 views
Why sed doesn't print an optional group?
I have two strings, say foo_bar and foo_abc_bar. I would like to match both of them, and if the first one is matched I would like to emphasize it with = sign. So, my guess was:
echo 'foo_abc_bar' | ...
1
vote
0answers
35 views
Bash script in ANT to remove text in file
I have this script:
# run this command to create production version of project.html
/<!-- BEGIN PRODUCTION|END PRODUCTION -->/ { next }
/<!-- (BEGIN|END) DEVELOPMENT -->/ { skip = !skip; ...
3
votes
1answer
24 views
sed insert file content after specific pattern match
I am tried after trying many combination and finally i came here. I want to insert file content at specific pattern match. following is example. i want to add file2.txt content in file1.txt between ...
0
votes
4answers
48 views
sed replace end of line with text and quote
I'm trying to change a line of type
DIRLIST="DIR/1 DIR/2 DIR/3"
to include a new DIR/4, using a bash script, where the DIR/4 is a command line argument
at the moment, this is my code for the ...
2
votes
2answers
67 views
extract a specific word in bash
I have some lines in below forms:
-rw-r--r-- sten/sefan anonymous 8593 2011-12-05 18:28 8M
-rw-r--r-- sten/sefan 8593 2011-12-05 18:28 8M
How can I get the 8593 one-liner?
The lines are retrieved ...
0
votes
2answers
31 views
How to find patterns in a line and print the result using UNIX sed?
If I have a line something like this:1300397,0,3,86,some more text here,end writing, another string here and I want to display 86 end writing only, how can I do that using sed?
So far I have this: ...
0
votes
5answers
39 views
Print text between two strings on the same line
I've been searching for a ling time, and have not been able to find a working answer for my problem.
I have a line from an HTML file extracted with sed '162!d' skinlist.html, which contains the text
...
1
vote
3answers
53 views
Bash replace string with contents from second file
I have two files one that looks like this:
FILE1
>comp0_c0_seq1 len=392 path=[1:0-391]
ATGAG...
>comp1_c0_seq1 len=399 path=[1:0-398]
AAGGA...
>comp1_c1_seq1 len=589 path=[1319:0-588]
...
2
votes
6answers
62 views
Parsing a config file in bash
Here's my config file (dansguardian-config):
banned-phrase duck
banned-site allaboutbirds.org
I want to write a bash script that will read this config file and create some other files for me. ...
1
vote
6answers
91 views
search (e.g. awk, grep, sed) for string, then look for X lines above and another string below
I need to be able to search for a string (lets use 4320101), print 20 lines above the string and print after this until it finds the string
For example:
Random text I do not want or blank line
16 ...
1
vote
7answers
48 views
search a string in a files if it match replace another string in the same line with some string
h -t 9.641909323 -s 0 -d 29 -p cbr -e 1078 -c 2 -a 0 -i 169 -k MAC
r -t 9.650534114 -s 29 -d 29 -p cbr -e 1020 -c 2 -a 0 -i 169 -k MAC
+ -t 9.650544114 -s 29 -d -1 -p ACK -e 38 -c 2 -a 0 -i 0 -k MAC
...
3
votes
3answers
64 views
Renaming files with various extensions
I have a folder of files which contains a variety of random file extensions as well as no extensions at all. I wish to strip the extensions from the file name. I feel I may be going a long winded way ...
0
votes
2answers
68 views
Loop and work between patterns
I'm trying to pick some information of a very huge document. The file follows this pattern:
'>Title 1'
0 200, >name [numbers&letters]
1 200, >name [numbers&letters]
2 200, ...
1
vote
3answers
30 views
Build a sed script from specific environment variables
I need to have a very basic template system in shell to port a windows installer to linux. So I can not change the syntax of the template variables.
I want to take specific environment variables ...
0
votes
4answers
38 views
How to terminate a regular expression and start another
I have a file which have the data something like this
34sdf, 434ssdf, 43fef,
34sdf, 434ssdf, 43fef, sdfsfs,
I have to identify the sdfsfs, and replace it and/or print the line.
The exact ...
2
votes
8answers
94 views
Unix command to convert multiple line data in a single line along with delimiter
Here is the actual file data:
abc
def
ghi
jkl
mno
And the required output should be in this format:
'abc','def','ghi','jkl','mno'
The command what I used to do this gives output as:
...
0
votes
2answers
44 views
sed find/replace lines with whitespaces
I'm writing a shell script that will find and replace a line to disable password caching in nscd. The problem is, there is a ton of white space before and inbetween the parameters and I can't seem to ...
1
vote
1answer
54 views
Manipulate columns using awk or sed
I have a file which i would like to rearrange....
Input file:
sublat
16 0.04 0.051
32 0.04 0.050
16 0.06 0.055
32 0.06 0.054
c2dotc2
16 0.04 0.464
32 0.04 0.624
16 0.06 0.505
32 0.06 0.743
Output ...
1
vote
3answers
40 views
Extract IP and Pointer Record from zone file
I'm reading in a file which is part of an AXFR file that I have exported to a txt file. Basically, I cat out the file, grep out ONLY the PTR records (I'm only interested in these right now). I've ...
1
vote
3answers
49 views
What is regular expression for first field containing alpha-numeric?
I have data that starts out like this in a .csv file
"684MF7","684MF7","RN"
The first field "684MF7" should only contain numeric characters; no alpha characters should be present in the first field. ...
-1
votes
0answers
51 views
sed/awk/perl? Replace pattern with result of using pattern as input to another command
I'm writing a wrapper function for ssh that replaces keys (specified elsewhere) with the proper username@hostname for that server. Keys are designated by the presence of at least one comma. For ...
1
vote
5answers
46 views
How to use sed to extract substring
I have a file containing the following lines:
<parameter name="PortMappingEnabled" access="readWrite" type="xsd:boolean"></parameter>
<parameter name="PortMappingLeaseDuration" ...
2
votes
7answers
83 views
Why these simple shell commands fail when used in sed'd replacement
While trying to find an answer of this sed question I came up with a strange behavior that I couldn't understand.
Let's say I have a file called data
$> cat data
foo.png
abCd.png
bar.png
baZ.png
...
1
vote
1answer
36 views
bash sed command failing to find and replace
I can not get the following bash sed commands to find and replace as it fails to match:
$ sed -i.bak 's,\"js/lj.main.min.js\?\d{14}\","js/lj.main.min.js?20130521080532",g' index.html
or
$ sed ...
2
votes
2answers
73 views
Find by regex and replace match to lowercase in Bash
I would like to replace all contents of a file that match a given regex to their lowercase equivalent. Like:
grep -o '[^ ]*[A-Z][^ ]*.png' file-21-05-2013.sql* | awk '{print tolower($0)}'
The line ...
0
votes
3answers
30 views
Replacing a line from multiple files, limiting to a line number range
I have a large number of files and I want to replace some lines from all of these files. I don't know the exact contents of the lines, all I know is all of them contain two known words - let's say for ...
2
votes
4answers
32 views
Can't extract pattern from filename
Getting errors from the following sed command:
echo 20130521_OnePKI_p107336_APP.pfx | sed -e 's/_\([pP][0-9]+\)_/\1/'
Instead of returning p107336, it is returning the full filenam ...
1
vote
4answers
32 views
SED command in UNIX
I want to remove below string from a file in Unix:
<?xml version='1.0' encoding='UTF-8'?>
The file content is exactly this:
<?xml version='1.0' encoding='UTF-8'?>Hello World
in one ...
-1
votes
1answer
19 views
Trying to extract MRTG info from a webpage using curl and sed
I am trying to extract some info from an MRTG page to track, namely the 5-minute Max, Avg and Cur values under class 'in" for the 5 minute graph.
So far, I have come up with
curl -s ...
0
votes
2answers
34 views
sed pattern replace with new line
I'm trying to replace with insert in all files in the directory with the following command:
find . -type f -exec sed -i.bak ':begin;$!N;s/\(@Autowired\)\n\(public .*\)\((ServletRequest\)/\2() ...
0
votes
1answer
50 views
bash remove everything DIRECTLY after html
My question is almost identical to this one: Bash remove everything after </html>. However, the answer
sed -i '/<\/html>/,$d;$a <\/html>' yourfile
is stripping the tag as well. ...
-1
votes
2answers
54 views
Awk/Sed: how to replace string?
Given a data.json such as:
{ "key1":"value1", "key2":"value2", "key3":"value3", "key4":"value4" },
{ "key1":"babla1", "key2":"babla2", "key3":"babla3", "key4":"babla4" },
{ "key1":"tata1", ...




