Tagged Questions
3
votes
6answers
439 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 ...
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
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
329 views
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
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
26 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
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
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
2answers
172 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 ...