Tagged Questions
The egrep tag has no wiki summary.
4
votes
3answers
700 views
Why doesn't this pattern work in egrep?
Why can't I match the string
"1234567-1234567890"
with the given regular expression
\d{7}-\d{10}
with egrep from the shell like this:
egrep \d{7}-\d{10} file
?
3
votes
6answers
438 views
regular expression to extract data from html page
I want to extract all anchor tags from html pages. I am using this in Linux.
lynx --source http://www.imdb.com | egrep "<a[^>]*>"
but that is not working as expected, since result contains ...
3
votes
2answers
66 views
Is there a way to compare regular expression backreferences?
I have the following sample expression that I'm passing to egrep over a word list:
^([a-z])lu([a-z])\2er$
I'd like to further stipulate that the content of \1 and \2 must be different, e.g. this ...
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
316 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
283 views
Tarballing without git metadata
My source tree contains several directories which are using git source control and I need to tarball the whole tree excluding any references to the git metadata or custom log files.
I thought I'd ...
2
votes
1answer
303 views
why egrep's stdout did not go through pipe?
i got a weird problem regarding egrep and pipe
I tried to filter a stream containing some lines who start with a topic name, such as
"TICK:this is a tick message\n"
When I try to use egrep to ...
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 ...
2
votes
7answers
2k views
how to find files containing a string using egrep
I would like to find the files containing specific string under linux.
I tried something like but could not succeed:
find . -name *.txt | egrep mystring
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
5answers
137 views
how to match “ABC-123” but not “XABC-123” in a regular expression
I have this egrep search:
egrep -is "(ABC-[0-9]+)"
which matches ABC-123 anywhere in a string.
I'd like it to ignore XABC-456 or YABC-789.
In other words, those examples should output "ok":
...
1
vote
4answers
203 views
Regular Expression to determine if phone number is 'local', 'national', 'mobile', 'premium', etc
I'm knocking up a simple PHP form to show telephone call usage on our asterisk system. All call information is being recorded in a database.
I'm familiar with regular expressions and PHP (to a ...
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
86 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
4answers
483 views
Validating IPv4 addresses with regexp
I've been trying to get an efficient regex for IPv4 validation, but without much luck. It seemed at one point I had had it with (25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?(\.|$)){4}, but it produces some ...
1
vote
2answers
328 views
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
3answers
308 views
How to return only part of a line with egrep
I have a program that returns something like this:
status: playing
artURL: http://beta.grooveshark.com/static/amazonart/m3510922.jpg
estimateDuration: 29400
calculatedDuration: 293000
albumName: This ...
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
3answers
854 views
Parts of a match in regular expression with egrep
I was wondering if, with egrep ((GNU grep) 2.5.1), I can select a part of the matched text, something like:
grep '^([a-zA-Z.-]+)[0-9]+' ./file.txt
So I get only the part which matched, between the ...
1
vote
4answers
161 views
Regular Expressions Match Specific Location In File
The file i am working with (oraInst.loc) looks like this:
inventory_loc=/u01/app/ORAENV/oracle/oraInventory
inst_group=dba
I need to use a regular expression to grab the value between app/ and ...
1
vote
3answers
1k views
Find Non-UTF8 Filenames on Linux File System
O/S = Fedora Code 9.
I have a number of files hiding in my LANG=en_US:UTF-8 filesystem that have been uploaded with unrecognisable characters in their filename.
I need to search the filesystem and ...
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
3answers
22 views
Logical operators using egrep
How do I make use of complex logical operations with egrep?
I can simply do, "egrep -v C abc.txt" to implement not of C and find that in abc.txt.
I can do "egrep A.*B abc.txt" to implement and of A ...
0
votes
2answers
39 views
egrep: find lines with no characters
I have a text file and I need to search that file and figure how many blank lines are in the file. A blank line is a line with no characters.
I must use egrep.
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
0answers
45 views
egrep: CPU and memory usage [migrated]
My Linux machine has 16 processors and free memory of 70 GB but when I run an egrep command, the command is using (checked through the top command) 100% of CPU and 0.5 of memory:
22391 aime 25 ...
0
votes
2answers
56 views
how to use egrep regex?
how to use egrep regex ?
source
exec pro..do_pr_ddd_sum 123039246, 995, 201705848
egrep '*pr_ddd_sum*123039246*995*' *
-- no result found
In the code above, it can't get any result back.
0
votes
1answer
20 views
New lines after grep a binary file are missing
Im trying to get text from text layers in a PSD file, under linux.
Now Im using:
egrep -a 'LayerText' file.psd
<photoshop:LayerText>免费获得宝贵资源! \ 工业现场过程仪表校准测试和维护诊断的必备工具 ...
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
0answers
106 views
Sniff on youtube URLs with ngrep accessed in browser
im trying to write a script which runs in the background sniffing on my eth0 network interface grepping for the line starting with GET trying to extract the youtube url im accessing.
This is the ...
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
3answers
85 views
syntax error with a regex in unix
I tried find a regular expression that matches any number between 1 and 999.
When is uses hooks I get a syntax error
(bash: syntax error near unexpected token `(')
and when I don't use the hooks ...
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
1answer
24 views
egrep with a filemask
How can i alter this command to only search through .tpl and .php files within the underlying directory structure?
egrep "\[#([^]])+#\]|_t?\(([^\)])+\)|\{_t ([^\}])+\}" . -RohiIs | sort | uniq
0
votes
1answer
80 views
How to tell egrep which characters not to accept
I want to accept string that begins with s than the next character (whatever it is) must be conatined in script two more times (but not less, not more) and before this char cannot be a backslash. So:
...
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
1answer
83 views
Egrep maximal repetition operator {,m} not working as expected?
Basically if I input a command such as egrep --color=ALWAYS "A{0,10}B" and then enter a string
such as 'AAAAAB', this gives the desired behavior of being a match. However if I instead change it to ...
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
1answer
433 views
Using find or grep to locate filenames with accented characters from a different encoding system (Windows to Linux)
I tried to tag late onto a question similar to mine (Find Non-UTF8 Filenames on Linux File System) to elicit further replies, with no luck so far, so here goes again...
I have the same problem as the ...
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 ...
0
votes
3answers
243 views
Is there any way to embed egrep and wget in my application?
hello all
i need in my application the feathers that the good old egrep and wget give me , but i can't execute them as
separate process i need them as embedded functions in my application
is there ...
0
votes
2answers
171 views
Modifying Regular expression to also match .java and .mm files
I am trying to use the cscope-indexer script. But I want to know how to change the following to include *.mm and *.java files?
egrep -i '\.([chly](xx|pp)*|cc|hh)$' | \
sed -e '/\/CVS\//d' -e ...