0
votes
3answers
56 views
How to egrep variable-Unix shell script
I’m trying to validate input by using egrep and regex.Here is the line from script (c-shell):
echo $1 | egrep '^[0-9]+$'
if ($status == 0) then
set numvar = $1
else
echo "Inva …
0
votes
5answers
63 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 …
0
votes
0answers
81 views
Best grep-like tool [closed]
I do in file search a lot, and used to love grep. Then I learn the existence of egrep, so I switched to benefit from the advanced regexp. Then I discovered the Eclipse search tool. …
1
vote
7answers
186 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
0
votes
3answers
87 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 app …
0
votes
2answers
80 views
Regular expression question
Hi,
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 …
0
votes
2answers
300 views
Find Non-UTF8 Filenames on Linux File System
Hi,
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 s …
1
vote
5answers
160 views
Egrep acts strange with -f option
Hi all,
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_ …
