Tagged Questions
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 ...
1
vote
3answers
307 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
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
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 = ...