I have a large unix text file that is structured like this:
START
REF dqdqd
akjdljakldjalkdjalkjd
dkjlajdlakjdlakjdaskl
LINE dkjdlakjdaljd
LINE dajdlajdlajdldjd
TOTAL akjhadkhadkahd
kfdlj...
http://www.experts-exchange.com/Programming/Languages/Scripting/Shell/Q_23527706.html
Im searching for files with this pattern: /[0-9]{3}/
I can't make the braces ({}) work using egrep:
> find /home/elvin | egrep '[0-9]{3}'
But this works:
> find /home/elvin | egrep '[0-...
http://www.experts-exchange.com/Programming/System/Linux/Q_20713404.html
Zones:
Linux DevDate Answered: 05/11/2004 Grade: B Views: 21
I am trying to learn Regular Expressions in C#.
I want to find a copy of egrep for Windows
I went to http://www.regex.info....but not sure how to install or run egrep. I need some help.
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21300661.html
Zones:
C#Date Answered: 02/03/2005 Grade: A Views: 5
/etc/rc.d/rc :line 101:516 segmentation fault egrep q (daemon | action) $i 2>/dev/null.
The above also displaying with /etc/rc.d/rc.sysinit: some line number: segmentation fault egrep q
.
...
http://www.experts-exchange.com/OS/Linux/Administration/Q_21556692.html
Zones:
Linux AdminDate Answered: 10/19/2005 Grade: B Views: 0
hi,
A server had particular high load this morning; top showed tons of sendmail activity.
I want to see which domain/user was responsible; what would the right syntaxis be to find out the doma...
http://www.experts-exchange.com/OS/Linux/Administration/Q_22137241.html
Zones:
Linux AdminDate Answered: 01/25/2007 Grade: A Views: 0
Hi,
I want to remove any lines in the report that have the value of $curver and store in results..
This is not working:
cat report | egrep -v $curver > results
I've googled for ages on ...
http://www.experts-exchange.com/Programming/Languages/Scripting/Shell/bash/Q_23793968.html
What is the difference btw "grep" and "egrep" ???
Pls kindly elaborate if there's difference(s).
Thx =)
http://www.experts-exchange.com/OS/Unix/Q_20795417.html
Zones:
UnixDate Answered: 11/16/2003 Grade: A Views: 56
Hello,
Does anyone have an egrep regular expression (regex) for valid dates in the format YYYYMMDD?
It's fairly simple for basic checking, for example the DD bit could be:
[0-3][0-9] but tha...
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_21822023.html
Hello,
Does anyone have a good egrep Regex for what constitutes a valid email address?
I could do some basic checks, but I thought why not ask if someone already has one. Perhaps certain cha...
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_21830999.html
Greetings Experts,
This is not a homework assignment. I have been trying to figure a way for egrep to include a white space , but I have not been successful. Here is the example text:
123<space...
http://www.experts-exchange.com/Programming/Misc/Q_20917088.html