Tagged Questions

3
votes
2answers
170 views

grep: “^.” doesn't match correctly

Can someone explain why this code doesn't work as expected? I would expect it only to match the first character, and it does with literal characters, but the wildcard (.) and characters classes behave ...
3
votes
3answers
293 views

grep from bottom to top of a file

what is the option with grep or egrep through which we can search from bottom to up of a file normally they works in the top to bottom
2
votes
3answers
312 views

How to invert a grep expression

The following grep expression successfully lists all the .exe and .html files in the current directory and sub directories. ls -R |grep -E .*[\.exe]$\|.*[\.html]$ How do I invert this result to ...
2
votes
2answers
61 views

Alternating chars and nested parenthesesin (e)grep

I'm looking for a regex that finds all words in a list that do not have characters next to each other that are the same. (this is an exercise) So abcdef is printed, but aabcdef is not. I tried both ...
2
votes
5answers
192 views

Is it possible to do a grep with keywords stored in the array?

Is it possible to do a grep with keywords stored in the array. Here is the possible code snippet... Please correct it args=("key1" "key2" "key3") cat file_name |while read line echo $line | grep ...
1
vote
2answers
48 views

Why [a-z]{3} and [[:lower:]]{3} are different in egrep?

Please try egrep "^[a-z]{3}$" /usr/share/dict/words egrep "^[[:lower:]]{3}$" /usr/share/dict/words The first one returns both uppercase and lowercase words. The second one returns lowercase words ...
1
vote
3answers
199 views

Grepping logs for IP adresses

I am quite bad at using "basic?" unix commands and this question puts my knowledge even more to test. What I would like to do is grep all IP adresses from a log (e.g. access.log from apache) and count ...
1
vote
2answers
84 views

using OR in egrep

How do I select only the lines those start with any digit or "** SETTLE" word with a few stars? Following will return the lines starting with number but do not return the lines with the word SETTLE. ...
1
vote
1answer
88 views

Double/half inverted egrep

I'd like to show all lines except those containing foo, unless they also contain bar. Logically !(foo and (!bar)) === (!foo) or bar, so I can use two separate expressions. Can I do this sort of match ...
1
vote
4answers
539 views

Transpose a File in unix

I have file something like this 1111,K1 2222,L2 3333,LT50 4444,K2 1111,LT50 5555,IA 6666,NA 1111,NA 2222,LT10 Output that is need 1111,K1,LT50,NA 2222,L2,LT10 3333,LT50 4444,K2 5555,IA 6666,NA 1 ...
1
vote
1answer
409 views

grep: excluding lines that begin with a blank character

I have a text file where some lines have a character at the beginning and some lines don't. I want to print the text file to screen, excluding the lines that don't have a character at the beginning. ...
1
vote
1answer
498 views

Help with PHP data mangling as with sed/awk/grep

Ok guys.. I have a HTML i need to parse into a php script and mangle the data around abit. For best explanation I will show how I would do this in a bash script using awk, grep, egrep, and sed ...
1
vote
5answers
372 views

Egrep acts strange with -f option

I've got a strangely acting egrep -f. Example: $ egrep -f ~/tmp/tmpgrep2 orig_20_L_A_20090228.txt | wc -l 3 $ for lines in `cat ~/tmp/tmpgrep2` ; do egrep $lines orig_20_L_A_20090228.txt ; done | ...
0
votes
2answers
28 views

How to handle parenthesis in grep?

str is of the following pattern: 1 abc (1 <something>) For example: 1 abc (1 hello) 1 abc (1 shalom) 1 abc (1 hola) How could I extract <something> from str using egrep?
0
votes
2answers
53 views

egrep regular expression works within PHP, but doesn't work at unix shell - escaping issues?

I think my problem has something to do with escaping differences between using a regex within PHP versus using it at Bash commandline. Here is my regex that is working in PHP: $emailregex = ...
0
votes
3answers
50 views

Regex replace match with match + addons

I would like to replace case-insensitive let's say mix: text StmiXx and some more mIxx text after regex replacement: text St<font color="red">miX</font>x and some more <font ...
0
votes
2answers
65 views

egrep search if a word appears multiple times side by side [closed]

I was looking for a way to use egrep in order to find "mybigsentencemybigsentence" in a file. I am relatively new to egrep so the only way I found is egrep "mybigsentencemybigsentence" myfile but ...
0
votes
4answers
188 views

Suppress the match itself in grep

Suppose I'have lots of files in the form of First Line Name Second Line Surname Adress Third Line etc etc Now I'm using grep to match the first line. But I'm doing this actually to find the second ...
0
votes
3answers
329 views

Regex question: Match sequence only n times on a random place

I have a regex question, take for example: ...AAABZBZBCCCDDD... ...BZBZBDDDBZBZBCCC... I am looking for a regular expression that matches BZBZB just n times. in a line. So, if I wanted to match ...
0
votes
3answers
241 views

egrep regex not working on regex that works in other program

I have this working regex (tested on regex coach): \n[\s]*[0-9]*[\s]*[0-9]*(\.)?[0-9]*(e\+)?[0-9]* that is supposed to pick up the first 2 columns of this file ...
0
votes
5answers
457 views

grep - search for “<?\n” at start of a file

I have a hunch that I should probably be using ack or egrep instead, but what should I use to basically look for <? at the start of a file? I'm trying to find all files that contain the php ...