Tagged Questions

Sed stands for Stream EDitor. It is one of the basic tools in the POSIX environment - it processes one or more files according to an editing script and writes the results to standard output. Created in Bell Labs, it has been around since mid-70s.

learn more… | top users | synonyms

77
votes
20answers
82k views

SED: How can I replace a newline (\n)?

I unsuccesfully tried: sed 's#/\n# #g' file sed 's#^$# #g' file How to fix it?
47
votes
5answers
14k views

What are the differences between Perl, Python, AWK and sed?

just want to know what are the main differences among them? and the power of each language (where it's better to use it). Edit: it's not "vs." like topic, just information.
36
votes
9answers
25k views

Non greedy regex matching in sed?

I'm trying to use sed to clean up lines of URLs to extract just the domain.. So from: http://www.suepearson.co.uk/product/174/71/3816/ I want: http://www.suepearson.co.uk/ (either with or ...
24
votes
4answers
19k views

Escape a string for sed search pattern

In my bash script I have an external (received from user) string, which I should use in sed pattern. REPLACE="<funny characters here>" sed "s/KEYWORD/$REPLACE/g" How can I escape the $REPLACE ...
23
votes
5answers
19k views

using sed and grep to search and replace

I am using egrep -R followed by a regular expression containing about 10 unions, so like: .jpg | .png | .gif etc... This works well. I would like to then replace all strings found with .bmp I was ...
22
votes
8answers
15k views

Awk/Sed: How to do a recursive find/replace of a string?

How to I find and replace every occurrence of: subdomainA.example.com with subdomainB.example.com in every text file under the /home/www/ directory tree (recursive find/replace).
16
votes
3answers
3k views

What is the difference between sed and awk?

What is the difference between awk and sed ? What kind of application are best use cases for sed and awk tools ?
16
votes
11answers
25k views

How to use sed to replace only the first occurrence in a file?

I want to update a large number of C++ source files with an extra include directive before any existing #includes. For this sort of task I normally use a small bash script with sed to re-write the ...
16
votes
17answers
20k views

Is there any sed like utility for cmd.exe

I want to programmatically edit file content using windows command line (cmd.exe). In *nix there is sed for this tasks. Is there any usefull equivalent in windows? Edit: I am looking for native ...
16
votes
11answers
12k views

How can I extract a range of lines from a text file on unix?

I have a ~23000 line sql dump containing several databases worth of data. I need to extract a certain section of this file (i.e. the data for a single database) and place it in a new file. I know both ...
14
votes
14answers
13k views

Parsing json with sed and awk

I'm trying to parse json returned from a curl request, like sp: curl 'http://twitter.com/users/username.json' | sed -e 's/[{}]/''/g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) ...
13
votes
6answers
495 views

Python or awk/sed for cleaning data [closed]

I use R for data analysis and am very happy with it. Cleaning data could be a bit easier, however. I am thinking about learning another language suited to this task. Specifically, I am looking for a ...
10
votes
7answers
261 views

How to randomly delete a number of lines from a big file?

I have a big text file of 13 GB with 158,609,739 lines and I want to randomly select 155,000,000 lines. I have tried to scramble the file and then cut the 155000000 first lines, but it's seem that my ...
10
votes
1answer
352 views

Non-greedy Pattern Expression

I've been reading "Mastering Regular Expressions" by Friedl and trying to devise a common non-greedy pattern expression for a string that is delimited by a word. Starting from basics where the ...
10
votes
5answers
5k views

How do you strip quotes out of an ECHO'ed string in a Windows batch file?

I have a Windows batch file I'm creating, but I have to ECHO a large complex string, so I'm having to put double quotes on either end. The problem is that the quotes are also being ECHOed to the file ...
9
votes
10answers
7k views

Shell/Bash Command to get nth line of STDOUT

Is there any bash command that will let you get the nth line of STDOUT? That is to say, something that would take this $ ls -l -rw-r--r--@ 1 root wheel my.txt -rw-r--r--@ 1 root wheel files.txt ...
9
votes
10answers
4k views

Batch script to replace PHP short open tags with <?php

I have a large collection of php files written over the years and I need to properly replace all the short open tags into proper explicit open tags. change "<?" into "<?php" I think this ...
8
votes
4answers
84 views

Delete all lines between two patterns (exclusive of the pattern) using sed or awk

I have a somewhat large output text file where I need to delete all lines between two patterns but retain the pattern match. The files look vaguely like the following output. TEST #1 ...
8
votes
6answers
2k views

using grep and sed to find and replace a string

Hi I am using the following to search a directory recursively for specific string and replace it with another: grep -rl oldstr path | xargs sed -i 's/oldstr/newstr/g this works okay. the only ...
8
votes
7answers
695 views

How do I properly match Regular Expressions?

I have a list of objects output from ldapsearch as follows: dn: cn=HPOTTER,ou=STUDENTS,ou=HOGWARTS,o=SCHOOL dn: cn=HGRANGER,ou=STUDENTS,ou=HOGWARTS,o=SCHOOL dn: ...
8
votes
5answers
7k views

Linux command line global search and replace

I'm trying to search and replace a string in all files matched by grep on a linux machine. I've got some pieces of what I want to do, but I'm unsure how best to string them all together. grep -n ...
8
votes
8answers
14k views

How can I remove the first line of a text file using bash/sed script?

I need to repeatedly remove the first line from a huge text file using a bash script. Right now I am using sed -i -e "1d" $FILE - but it takes around a minute to do the deletion. Is there a more ...
7
votes
5answers
232 views

How do I add a line of text to the middle of a file using bash?

I'm trying to add a line of text to the middle of a text file in a bash script. Specifically I'm trying add a nameserver to my /etc/resolv.conf file. As it stands, resolv.conf looks like this: # ...
7
votes
3answers
416 views

Sed to remove underscores and promote character

I am trying to migrate some code from an old naming scheme to the new one the old naming scheme is: int some_var_name; New one is int someVarName_: So what I would ilke is some form of sed / ...
7
votes
5answers
8k views

sed: group capturing

Is there any way to tell sed to output only captured groups? for example given by input: This is a sample 123 text and some 987 numbers and pattern /([\d]+)/ I could get only 123 and 987 output ...
7
votes
5answers
248 views

Sed not reconizing \t instead it is treating it as 't' why?

sed "s/\(.*\)/\t\1/" $filename > $sedTmpFile && mv $sedTmpFile $filename I am expecting this sed script to insert a tab in font of every line in $filename however it is not. For some ...
7
votes
5answers
4k views

Easiest way to extract the urls from an html page using sed or awk only

I want to extract the URL from within the anchor tags of an html file. This needs to be done in BASH using SED/AWK. No perl please. What is the easiest way to do this?
7
votes
6answers
799 views

sed optimization question (large file modification based on smaller dataset)

I do have to deal with very large plain text files (over 10 gigabytes, yeah I know it depends what we should call large), with very long lines. My most recent task involves some line editing based ...
7
votes
6answers
5k views

Shell: insert a blank/new line two lines above pattern

I have a text file and it requires some formatting. I know that if you want to add a blank line above every line that matches your regexp, you can use: sed '/regexp/{x;p;x;}' But I'd like to add a ...
7
votes
7answers
10k views

upper- to lower-case using sed

I'd like to change the following patterns: getFoo_Bar to: getFoo_bar (note the lower b) Knowing neither foo nor bar, what is the replacement pattern? I started writing sed ...
7
votes
4answers
1k views

What GNU/Linux command-line tool would I use for performing a search and replace on a file?

What GNU/Linux command-line tool would I use for performing a search and replace on a file? Can the search text, and replacement, be specified in a regex format?
6
votes
7answers
151 views

SED - removing string followed by LineFeed (\n)

I can't find a suitable sed expression to remove a word followed by a line return (\n) Test file is: line1\n line2\n line3mark\n line4\n line5\n and i want to remove all occurances of mark\n ...
6
votes
4answers
194 views

sed join lines together

what would be the sed (or other tool) command to join lines together in a file that do not end w/ the character '0'? I'll have lines like this 412|n|Leader Building Material||||||||||d|d|20||0 ...
6
votes
4answers
167 views

How to switch/rotate every two lines with sed/awk?

I have been doing this by hand and I just can't do it anymore-- I have thousands of lines and I think this is a job for sed or awk. Essentially, we have a file like this: A sentence X A matching ...
6
votes
1answer
180 views

Confusing Sed One-Liner in Makefile Tutorial

Can anyone explain this sed one-liner in English (the more detail, the better)? @sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' < $*.d > $@; \ rm -f $*.d; [ -s $@ ] || rm -f $@ It's part of ...
6
votes
6answers
1k views

Sed command find and replace in file and overwrite file doesnt work, it empties the file!

I would like to run a rind and replace on a html file through the command line. my command looks something like this: sed -e s/STRING_TO_REPLACE/STRING_TO_REPLACE_IT/g index.html > index.html ...
6
votes
8answers
2k views

Recursively rename files using find and sed

I want to go through a bunch of directories and rename all files that end in _test.rb to end in _spec.rb instead. It's something I've never quite figured out how to do with bash so this time I thought ...
6
votes
2answers
443 views

SED: preserve line endings

I run sed to do some substitution on windows and I noticed that it automatically converts line endings to Unix (\n). Is there an option to tell sed to use Windows line endings (\r\n) or even better to ...
6
votes
2answers
1k 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 ...
6
votes
3answers
269 views

Script for changing C++ class names

I have moved my classes from a global namespace into a specific namespace. I have also changed the class names. I want to convert all my source files that use these classes to the new format. I was ...
6
votes
11answers
5k views

Converting FASTQ to FASTA with SED/AWK

I have a data in that always comes in block of four in the following format (called FASTQ): @SRR018006.2016 GA2:6:1:20:650 length=36 NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGN +SRR018006.2016 ...
6
votes
3answers
3k views

sed line range, all but the last line

You can specify a range of lines to operate on. For example, to operate on all lines, (which is of course the default): sed -e "1,$ s/a/b/" But I need to operate on all but the last line. You ...
6
votes
5answers
5k views

How to insert a newline in front of a pattern?

Not how to insert a newline before a line. This is asking how to insert a newline before a pattern within a line. For example, sed 's/regexp/&\n/g' will insert a newline behind the regexp ...
5
votes
3answers
38 views

Sed regex and substring negation

What is the correct syntax for finding a substring (a string which is preceded and followed by specific strings) which does not match a specific pattern? For example, I want to take all substrings ...
5
votes
3answers
40 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 ...
5
votes
2answers
140 views

Compare 2 Unix Files and Output Matching Lines to a New File?

I have 2 nix files. All of the data is on one single line in each file. Each value is separated by a null character. Some off the values in the data match. How would I parse this data into a new file ...
5
votes
4answers
73 views

How do I escape backslashes in a sed script embedded in a bash script

I want to edit a file via a sed script in a bash script. I want this to be easy to maintain later; easy to understand and modify. The replacement string looks like: PS1='\[\e[1;32m\][\u@\h ...
5
votes
4answers
78 views

use sed to replace text just in quotes

I have this test file. [root@localhost ~]# cat f.txt "a aa" MM "bbb b" MM MM MM"b b " [root@localhost ~]# I want to replace all space characters in the quotes, note, just in the quotes. All ...
5
votes
12answers
540 views

Finding and replacing many words

I frequently need to make many replacements within files need to make a lot of replacements within files. To solve this problem, I have created two files old.text and new.text. The first contains a ...
5
votes
5answers
123 views

Delete all lines beginning with a # from a file

All of the lines with comments in a file begin with #. How can I delete all of the lines (and only those lines) which begin with #? Other lines containing #, but not at the beginning of the line ...

1 2 3 4 5 40