0
votes
1answer
29 views
Grep doesn’t work correctly with .as files
Here's the statement I'm running:
grep -i -H 'ConfigureControls' *.as
Note that I'm forcing file names with the -H flag.
What I get back is:
} } trac} } this.chair …
0
votes
5answers
59 views
Using jQuery inArray with array of JavaScript Objects
Hello all,
I'm working with an array of JavaScript Objects as such:
var IssuesArray = [{"ID" : "1", "Name" : "Issue1"},
{"ID" : "2", "Name" : "Issue2"},
…
1
vote
1answer
44 views
git grep --cached
Am I misunderstanding how git grep --cached foo works? Running git version 1.6.4.4 or 1.6.5.2, git grep --cached foo returns exactly the same thing as git grep foo.
I thought it …
1
vote
4answers
130 views
Find stored procedures not referenced in source code.
I am trying to clean up a legacy database by dropping all procedures that are not used by the application. Using grep, I have been able to determine that a single procedure does no …
0
votes
5answers
60 views
Using grep to find files that doesn’t contain a given string pattern
I'm using the following command in my web application to find all files in the current directory that contain the string foo (leaving out svn directories).
find . -not -ipath '. …
2
votes
3answers
67 views
Why does this `grep -o` fail, and how should I work around it?
Given the input
echo abc123def | grep -o '[0-9]*'
On one computer (with GNU grep 2.5.4), this returns 123, and on another (with GNU grep 2.5.1) it returns the empty string. Is …
3
votes
4answers
98 views
Can you mass edit all files returned in a grep?
I want to mass-edit a ton of files that are returned in a grep. (I know, I should get better at sed).
So if I do:
grep -rnI 'xg_icon-*'
How do I pipe all of those files into vi …
1
vote
8answers
72 views
getting a substring from a regular expression
Here is the line of text:
SRC='999'
where 999 can be any three digits.
I need a grep command that will return me the 999. How do I do this?
2
votes
5answers
197 views
Regular expression to match unique words in files
To prefix unique words with "UNIQUE:" inside a file I've tried to use a perl regex command like:
perl -e 'undef $/;while($_=<>){s/^(((?!\b\3\b).)*)\b(\w+)\b(((?!\b\3\b).)*)$ …
0
votes
8answers
88 views
Is there any way to use UNIX GREP commands on WIndows operating system
All,
I need some command like GREP in UNIX for WINDOWS Operating system, If there any way to use grep or any equivalent command in Windows?
Please help
2
votes
3answers
73 views
How to execute a command with one parameter at a time in the *nix shell?
Some commands like svn log, for example will only take one input from the command line, so I can't say grep 'pattern' | svn log. It will only return the information for the first f …
0
votes
2answers
55 views
command-line grep for a string with ‘$’ in it?
I'm trying to find where two variables are being concatenated in a directory of scripts, but when I try the following:
grep -lire "$DATA_PATH . $AWARDS_YEAR" *
I get "undefined …
0
votes
1answer
44 views
grep multiple extension current and subfolders
I'm trying to grep multiple extensions within the current and all sub-folders.
grep -i -r -n 'hello' somepath/*.{php,html}
This is only grepping the current folder but not sub-f …
1
vote
5answers
288 views
GREP - show only words that match search pattern?
Is there a way to make grep output "words" from files that match the search expression?
If I want to find all the instances of, say, "th" in a number of files you do;
grep "th" * …
2
votes
3answers
78 views
Using grep with two variables
I want to use grep with two variables in a shell script
var = match
cat list.txt | while read word_from_list; do
grep "$word_from_list" "$var" >> words_found.txt
done
Bu …
