This tag has multiple meanings. Please DO NOT use this tag if you're just trying to find something.
176
votes
6answers
43k views
Eclipse find in project?
Does Eclipse have a way to search a whole project for some text? Like Xcode's "find in project" feature.
126
votes
5answers
168k views
Find text string using jQuery?
Say a web page has a string such as "I am a simple string" that I want to find. How would I go about this using JQuery?
105
votes
14answers
28k views
How can I get `find` to ignore .svn directories?
I often use the find command to search through source code, delete files, whatever. Annoyingly, because Subversion stores duplicates of each file in its .svn/text-base/ directories my simple searches ...
96
votes
4answers
59k views
jQuery how to find an element based on a data-attribute value?
I've got the following scenario:
var el = 'li';
and there are 5 <li>'s on the page each with a data-slide=number attribute (number being 1,2,3,4,5 respectively).
I now need to find the ...
93
votes
3answers
53k views
What is fastest children() or find() in jQuery?
To select a child node in jQuery one can use children() but also find().
For example:
$(this).children('.foo');
gives the same result as:
$(this).find('.foo');
Now, which option is fastest or ...
77
votes
6answers
39k views
How can I exclude all “permission denied”-messages from “find .”?
I need to hide all "permission denied"-messages from:
find . > files_and_folders
I am experimenting when such message arises. I need to gather all folders and files, to which it does not arise. ...
52
votes
10answers
51k views
ls command: how can I get a recursive full-path listing, one line per file?
How can I get ls to spit out a flat list of recursive one-per-line paths?
For example, I just want a flat listing of files with their full paths:
/home/dreftymac/.
/home/dreftymac/foo.txt
...
45
votes
5answers
18k views
How to use '-prune' option of 'find' in sh?
I don't quite understand the example given from the 'man find', can anyone give me some examples and explanations? Can I combine regular expression in it?
the more detailed question is like this: ...
40
votes
10answers
37k views
How to use 'find' to search for files created on a specific date?
How do I use the UNIX tool 'find' to search for files created on a specific date?
40
votes
9answers
19k views
Using grep to find files that don'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 '.*svn*' -exec grep ...
34
votes
3answers
30k views
Find all elements on a page whose element ID contains a certain text using jQuery
I'm trying to find all elements on a page whose element ID contains a certain text. I'll then need to filter the found elements based on whether they are hidden or not. Any help is greatly ...
33
votes
2answers
19k views
find -exec cmd {} + vs | xargs
Which one is more efficient over a very large set of files and should be used?
find . -exec cmd {} +
or
find . | xargs cmd
(Assume that there are no funny characters in the filenames)
31
votes
13answers
52k views
How to pipe list of files returned by find command to cat to view all the files
I am doing a find and then getting a list of files. how do I pipe it to another utility like cat (so that cat displays the contents of all those files) and basically need to grep something from these ...
29
votes
6answers
7k views
find -exec a shell function?
Is there a way to get find to execute a function I just defined in a bash script?
dosomething () {
echo "doing something with $1"
}
find . -exec dosomething {} \;
find just tells me:
find: ...
28
votes
11answers
22k views
Capturing output of find . -print0 into a bash array
Using find . -print0 seems to be the only safe way of obtaining a list of files in bash due to the possibility of filenames containing spaces, newlines, quotation marks etc.
However, I'm having a ...
27
votes
5answers
21k views
`find -name` pattern that matches multiple patterns
I was trying to get a list of all python and html files in a directory with the command find Documents -name "*.{py,html}".
Then along came the man page:
Braces within the pattern (‘{}’) are not ...
27
votes
1answer
3k views
Xcode find in document stuck in case-sensitive
When in Xcode editing code for my objective C files, I often press Command-F to bring up the little Find-In-Document banner across the top. Sometimes this gets stuck in case-sensitive search, and when ...
27
votes
3answers
16k views
PowerShell Script to Find and Replace for all Files with a Specific Extension
I have several configuration files on Windows Server 2008 nested like such:
C:\Projects\Project_1\project1.config
C:\Projects\Project_2\project2.config
In my configuration I need to do a string ...
25
votes
4answers
19k views
How to select where ID in Array Rails ActiveRecord without exception
When I have array of ids, like
ids = [2,3,5]
and I perform
Comment.find(ids)
everything works fine. But when there is id that doesn't exist, I get an exception. This occurs generaly when I get ...
24
votes
3answers
18k views
Find duplicate lines in a file and count how many time each line was duplicated?
Suppose I have a file similar to as follow
123
123
234
234
123
345
I would like to find how many times '123' was duplicated, how many times '234' was duplicated and etc.
So Ideally output like
...
23
votes
6answers
18k views
how to recursively find the latest modified file in a directory?
it seems that ls doesn't sort the files correctly, when doing a recursive call:
ls -altR . | head -n 3
how can i find the latest modified file in a directory (including subdirectories)?
see you,
23
votes
3answers
11k views
How to check if a value exists in a dictionary (python)
Hi I have the following dictionary in python:
d = {'1': 'one', '3': 'three', '2': 'two', '5': 'five', '4': 'four'}
I need a way to find if a value such as "one" or "two" exists in this dictionary.
...
23
votes
5answers
14k views
find -exec with multiple commands
I am trying to use find -exec with multiple commands without any success. Does anybody know if commands such as the following are possible?
find *.txt -exec echo "$(tail -1 '{}'),$(ls '{}')" \;
...
22
votes
3answers
9k views
“find: paths must precede expression:” How do I specify a recursive search that also finds files in the current directory?
I am having a hard time getting find to look for matches in the current directory as well as its subdirectories.
When I run find *test.c it only gives me the matches in the current directory. (does ...
21
votes
2answers
18k views
jquery: find element whose id has a particular pattern
I am trying to find a span element who has an id in a particular pattern. Its main use is to find certain elements rendered by an asp.net (aspx) page which is derived from a master page.
21
votes
2answers
1k views
php recursive folder readdir vs find performance
i came across few articles about performance and readdir
here is the php script:
function getDirectory( $path = '.', $level = 0 ) {
$ignore = array( 'cgi-bin', '.', '..' );
$dh = @opendir( ...
20
votes
4answers
3k views
Python: find first element in a sequence that matches a predicate
Stupid question ahead: I want an idiomatic way to find the first element in a list that matches a predicate.
The current code is quite ugly:
[x for x in seq if predicate(x)][0]
I've thought about ...
19
votes
9answers
10k views
Numpy array: how to find index of first occurrence of item
How can I find the index of the first occurrence of a number in a Numpy array?
Speed is important to me. I am not interested in the following answers because they scan the whole array and don't stop ...
18
votes
2answers
12k views
jquery find element by text
Can anyone tell me if it's possible to find an element based on it's content rather than by an id or class?
I am attemoting to find elements that don't have distinct classes or id's. Upon doing that, ...
17
votes
3answers
6k views
Best way to do a find/replace in several files?
what's the best way to do this? i'm no command line warrior, but i was thinking there's possibly a way using grep and cat.
i just want to replace a string that occurs in a folder and sub-folders. ...
17
votes
5answers
11k views
How do I use a pipe in the exec parameter for a find command?
I'm trying to construct a find command to process a bunch of files in a directory using two different executables. Unfortunately, -exec on find doesn't allow to use pipe or even \| because the shell ...
17
votes
3answers
1k views
Perl's file test operator -f returns true for symbolic links
I used to think that -f tested a file to see if it was a regular file, and not anything else. But Perl seems to be behaving differently. I looked up the perldoc entry , and it says:
-f File is a ...
16
votes
6answers
117k views
Examples for string find in Python
I am trying to find some examples but no luck. Anyone knows some examples on the net? I want to know what it returns when it can't find, and how to specify from start to end, which I guess is gonna be ...
16
votes
7answers
34k views
Checking value exist in a std::map - C++
I know find method finds the supplied key in std::map and return an iterator to the element. Is there anyway to find the value and get an iterator to the element? What I need to do is to check ...
16
votes
5answers
4k views
MATLAB-style find() function in Python
In MATLAB it is very easy to find the indecies of values that meet a particular conditions:
>> a = [1,2,3,1,2,3,1,2,3];
>> find(a > 2) % find the indecies where this condition is ...
16
votes
4answers
4k views
Exclude file types from search in Visual Studio
Often when I want to search through my code in Visual Studio, I know the thing I'm looking for is in some C# code. However, as I've used the same variable name in a javascript file, I have to wade ...
15
votes
4answers
17k views
linux find regex
I'm having trouble using the regex of the find command. Probably something I don't understand about escaping on the command line.
Why are these not the same?
find -regex '.*[1234567890]'
find -regex ...
15
votes
2answers
18k views
Why does find -exec mv {} ./target/ + not work?
I want to know exactly what {} \; and {} + and | xargs .... do: Please clarify these with explanation.
Below 3 commands run and output same result but first command takes a little time and format is ...
15
votes
4answers
471 views
Python equivalent of find2perl
Perl has a lovely little utility called find2perl that will translate (quite faithfully) a command line for the Unix find utility into a Perl script to do the same.
If you have a find command like ...
14
votes
2answers
43k views
jquery how to find if div with specific id exists
I've got a function that appends a div to an element on click. The function gets the text of the clicked element and assigns it to a variable called 'name'. That variable is then used as the div id ...
14
votes
10answers
13k views
Recursively rename files using find and sed
I want to go through a bunch of directories and rename all files that end in _test.rb to end in _spec.rb instead. It's something I've never quite figured out how to do with bash so this time I thought ...
14
votes
4answers
5k views
Is there a “Find in Files” shortcut in Eclipse?
Is there a "Find in Files" shortcut in Eclipse, as there is in Visual Studio (Ctrl+Shift+F)?
I have looked in these two lists:
Eclipse Shortcuts
"Show All Shortcuts" shortcut: Ctrl+Shift+L.
...
14
votes
6answers
3k views
find unused images, css rules, js script blocks
We have a fairly large asp.net website. The images, css and javascripts are property organized in the website project but as we are changing the look and feel of the website, I would like to know if ...
13
votes
3answers
40k views
Python: Find in list
I have come across this delightful:
item = someSortOfSelection()
if item in myList:
doMySpecialFunction(item)
but sometimes it doesnt work with all my items, as if they werent recognized in the ...
13
votes
10answers
7k views
Batch script to replace PHP short open tags with <?php
I have a large collection of php files written over the years and I need to properly replace all the short open tags into proper explicit open tags.
change "<?" into "<?php"
I think this ...
13
votes
2answers
3k views
Visual Studio Clicking Find Results Opens Code in Wrong Window
I'm using Visual Studio 2010 and when I do a "Find in Files" the results are returned to the "Find Results 1" window which is docked below my code editor window.
Before, I would double click on one ...
13
votes
2answers
2k views
C++, find unused code and includes
Are there any no-cost tools (or direct Eclipse CDT plugins) that scan C++ code for unused functions, methods, variables, includes...?
I only found this stuff for C# and Java, but I'd like to have it ...
12
votes
5answers
21k views
How do I form a good predicate delegate to Find() something in my List<T>?
After looking on MSDN, it's still unclear to me how I should form a proper predicate to use the Find() method in List using a member variable of T (where T is a class)
For example:
public class Car
...
12
votes
5answers
12k views
UNIX find for finding file names NOT ending in specific extensions?
Is there a simple way to recursively find all files in a directory hierarchy, that do not end in a list of extensions? E.g. all files that are not *.dll or *.exe
UNIX/GNU find, powerful as it is, ...
12
votes
6answers
8k views
More efficient way to find & tar millions of files
I've got a job running on my server at the command line prompt for a two days now:
find data/ -name filepattern-*2009* -exec tar uf 2009.tar {} ;
It is taking forever, and then some. Yes, there ...




