0
votes
2answers
47 views

sed match date format Apr 25, 2013

Can anyone help with a search & replace script (sed) to match a date Feb 24, 2009 and replace it with a white space? sed 's/ \(Jan\|Feb\|Mar\|Apr\|May\|Jun\|Aug\|Sep\|Oct\|Nov\|Dec\) ...
0
votes
3answers
139 views

How to uncomment multiple lines on second pattern match using sed?

I am trying to use sed to uncomment a block of text in this config file. The code I came up with uncomments 7 lines starting from and including the pattern match on the first match but I need it to ...
0
votes
5answers
88 views

How can I select the IP address from the output of the `ip route` command?

$ ip route get 255.255.255.255 broadcast 255.255.255.255 dev eth0 src 192.168.223.129 I want to get the IP address of 192.168.223.129 all I know is that I have to use the sed command. Also, ...
3
votes
4answers
102 views

SED: how to find only even numbers in a given file using sed

I am new to bash and having a tough time figuring this out. Using sed, could anyone help me in finding only even numbers in a given file? I figured out how to find all numbers starting from ...
0
votes
3answers
327 views

grep from file, print matched and unmatched

I have a file, say input, containing patterns like below: quantum_mech_.* astrophysics_.* geology_.* economy_* I have another file , say subjects, which looks like: quantum_mech_[101] ...
1
vote
3answers
65 views

Return last [0-9]\{6\} from a string with sed

I want to pass a long list of filenames in the form something_0230232_long_5160mK.csv something_0230232_long-025160mK.csv simething_0230342_lingk425460mK.csv to sed (or similar linux shell tools) ...
4
votes
4answers
310 views

extract a string after a pattern

I want to extract the numbers following client_id and id and pair up client_id and id in each line. For example, for the following lines of log, User(client_id:03)) results:[RelatedUser(id:204, ...
0
votes
1answer
77 views

Replace text in the line before pattern

I have a text like this 5834589 MDL-BLABLABLA1 bla-bla2 bla-bla3 bla-bla4 bla-bla5 I want to replace 5834589 (number) in the line before line with the pattern MDL to EXAMPLE-RIVER-5834589 (Just ...
0
votes
6answers
156 views

How to find and print a line with a strict pattern is appropriate

The problem is as follows. There is a file with a set of strings testfile: string2 var var33 string2 HD loop 334 000:000:7878:7878:8978 string1 var var33 string1 HD loop 000:000:7878:7878:8978 ...
1
vote
2answers
60 views

Change case of line not matching a pattern

I have a large file in this format: >Abc1 | SOME TEXT atgcgnntcagacagacaa >Abc2 | SOME DIFFERENT TEXT nnatgcgatgacatacanggaaga >Abc3 | SOME OTHER TEXT gcatgacagagacagatgacaggcacacg All I am ...
1
vote
3answers
203 views

sed regex pattern for some tricky line (ini section)

I want parse something like a section entry in an *.ini file: line=' [ fdfd fdf f ] ' What could be the sed pattern (???) for this line to split the 'fdfd fdf f' ...
0
votes
1answer
75 views

Automatically Create Links When Pattern and Numeric Digit Encountered - PHP or SED?

I have many webpages with content that looks like this: History.—s. 1, ch. 71-135; s. 19, ch. 73-331; s. 1, ch. 74-384; s. 1, ch. 76-31; s. 1, ch. 79-408; s. 1, ch. 80-343; s. 2, ch. 82-155; s. ...
1
vote
1answer
743 views

Perl pattern matching where we print all matching parts, but only the matching parts (not the rest)

I am looking for a solution to do this in Perl. Example: If my string is: my $content = 'toto /app/blah titi\nhuh/app/ttt wew'; and my pattern is: /app/something I want to get as output in an ...
3
votes
2answers
1k views

How do I remove all lines matching a pattern from a set of files?

I've got an irritating closed-source tool which writes specific information into its configuration file. If you then try to use the configuration on a different file, then it loads the old file. ...
1
vote
1answer
79 views

sed - behaviour of holdspace

I have (from the sed website http://sed.sourceforge.net/sed1line.txt) this one-liner: sed -e '/./{H;$!d;}' -e 'x;/AAA/!d;/BBB/!d;/CCC/!d' Its purpose is to search a paragraph for either AAA, BBB or ...
2
votes
1answer
130 views

Removing multiple line patterns not working when patterns are stored in a file

I had asked a question about searching for multiple lines which I found answers to here: Searching for multiple lines including a blank one in shell script However, if I store multiple such command ...
0
votes
2answers
394 views

Searching for multiple lines including a blank one in shell script

I am using the following command to find a pattern spanning multiple lines and replacing it with a blank line: sed -n '1h; 1!H; ${ g; s/<Pattern1>\n<pattern2> //g p }' <file-name> ...
4
votes
7answers
758 views

Sed script to remove first two lines of file if they are empty

I'm trying to write a fairly concise sed script to remove the first two lines of a file only if they are empty, so the following file: > cat myfile.in Line 3 Line 5 Would result in a three ...
0
votes
3answers
599 views

Matching pattern span multiple line and remove those matching lines

I was trying to use sed to do the following: In file looks something like: FirstLine SecondLineEEE AAAblablabla ForthLineEEE FifthLine LastLine I want to remove EEE (but keep the rest of ...
1
vote
4answers
737 views

How do I delete a matching line and the previous one?

I need delete a matching line and one previous to it. e.g In file below I need to remove lines 1 & 2. I tried "grep -v -B 1 "page.of." 1.txt and I expected it to not print the matchning lines ...
2
votes
5answers
813 views

how to remove text block (pattern) from a file with sed/awk

I have thousands of text files that I have imported that contain a piece of text that I would like to remove. It is not just a block of text but a pattern. <!-- # Translator(s): # # username1 ...
0
votes
3answers
994 views

sed find occurances of pattern in a file

I have a csv file with tags in the form of ...,fxx=sth,... and would like to check what field values every field can take. Currently I use: cat data.csv | grep "f10=" | sed 's/.*\(f10=[^,]*\).*/\1/g' ...
1
vote
4answers
593 views

How to extract words in multiple line in unix?

I want to extract some specific words from the following string :- Exported Layer : missing_hello Comment : Total Polygons : 20000 (reported 100). I want to extract the word ...
-1
votes
0answers
172 views

Regex - replace if not in brackets [duplicate]

Possible Duplicate: Regex - nested patterns - within outer pattern but exclude inner pattern This is a similar question to question 6271304 but I didn't get an answer that worked for me. I ...
1
vote
5answers
628 views

Regex - nested patterns - within outer pattern but exclude inner pattern

I have a file with the content below. <td> ${ dontReplaceMe } ReplaceMe ${dontReplaceMeEither} </td> I want to match 'ReplaceMe' if it is in the td tag, but NOT if it is in the ${ ... ...
11
votes
2answers
19k views

How to extract text between two words in unix?

I am using basic sed expression :- sed -n "am/,/sed/p" to get the text between "am" and "sed" which will output "am \n using \n basic \n sed". But my real problem is if the string would be ...
2
votes
2answers
99 views

Return each instance of a regex

I've extensively googled and everyone keeps telling me how to return the LINE that the regex matches... go lets say that i have a line like this in a text file: <a href=http://google.com> ...
0
votes
3answers
901 views

using set to extract a matched pattern using ' as pattern separator

I'm just not getting my head around the pattern matching in sed, what is worse, there are quotes as separators. I do: cat file | grep \'*.s\' and get: 'PhaseRayA: ' ...
0
votes
6answers
125 views

sed help - convert a string of form ABC_DEF_GHI to AbcDefGhi

How can covert a string of form ABC_DEF_GHI to AbcDefGhi using any online command such as sed etc. ?
2
votes
4answers
2k views

SED command to get nth tab separated value between lines x and y

I have been able to extract certain lines from a large tab-separated text file and write them to another file: sed -n 100,200p file.tsv >> output.txt However, I am actually trying to grab ...
2
votes
3answers
378 views

Using sed with html data

I'm having some problems using sed in combination with html. The following sample illustrates the problem: HTML="<html><body>ENTRY</body><html>" ...
8
votes
7answers
817 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: ...