misspelledsearch.com:

find electronic component

information page

If you cannot find the information you are searching for on this page, we suggest searching Google with the correct spelling "find electronic component":

Google

The correct title of this article is find. The initial letter is capitalized due to technical restrictions.
For the EP by Hidden in Plain View, see Find (EP)

The find program is a search utility, mostly found on Unix-like platforms. It searches through a directory tree of a filesystem, locating files based on some user-specified criteria. By default, find returns all files below the current working directory. Further, find allows the user to specify an action to be taken on each matched file. Thus, it is extremely powerful program for applying actions to a lot of files. It also supports regexp matching.

Contents

  • 1 Examples
    • 1.1 From current directory
    • 1.2 Files only
    • 1.3 Commands
    • 1.4 Search all directories
    • 1.5 Specify a directory
    • 1.6 Execute an action
    • 1.7 Search for a string
  • 2 Free software implementations
  • 3 External links

Examples

From current directory

find . -name my*

This searches in the current directory (represented by a period) and below it, for files and directories with names starting with my.

Files only

find . -name "my*" -type f

This limits the above search to files.

Commands

The previous examples created listings of results because, by default, find executes the '-print' action.

find . -name "my*" -type f -ls

This prints an extended file information.

Search all directories

find / -name "myfile" -type f -print

This searches every file on the computer for a file with the name myfile. It is generally not a good idea to look for data files this way. This can take a considerable amount of time, so it is best to specify the directory more precisely.

Specify a directory

find /home/brian -name "myfile" -type f -print

This searches for files named myfile in the /home/brian directory, which is the home directory for the user brian. You should always specify the directory to the deepest level you can remember.

Execute an action

This command actually changes modes of files:

find /var/ftp/mp3 -name "*.mp3" -type f -exec chmod 744 {} \;

This will change all of the files with a name ending in .mp3 in the directory /var/ftp/mp3 to have their mode changed to 744, or rwxr--r--. This gives you full permission to read, write, and execute the files. However, other users will only have read-only access to the files. The braces {} are translated to the name of each file found.

Search for a string

This command will search for a string in all files from the /tmp directory and below. The /dev/null is used to show the name of the file before the text that is found. Without it, only the text found is printed.

find /tmp -exec grep "search string" '{}' /dev/null \; -print

Example of search for "LOG" in jsmith's home directory

find ~jsmith -exec grep "LOG" '{}' /dev/null \; -print
/home/jsmith/scripts/errpt.sh:cp $LOG $FIXEDLOGNAME
/home/jsmith/scripts/errpt.sh:cat $LOG
/home/jsmith/scripts/title:USER=$LOGNAME

The double quotes (" ") surrounding the search string and single quotes (' ') surrounding the braces are optional in the example, but needed to allow spaces and other special characters in the string.

Free software implementations

  • GNU Findutils - Comes with the xargs and locate commands.

External links

  • Official webpage for GNU find
  • Linux find(1) manpage
  • Unix man page

This find electronic component index site has been developed to help wayward users find the information they are looking for, no matter how they are mistakenly spelled or mistyped. This site is designed to help users find find electronic component information for the following query variants:

find electronic find electronic cmponent find electronic coponent find electronic comonent
find electronic compnent find electronic compoent find electronic componnt find electronic componet
find electronic componiegnt find electronic componeignt find electronic conpoment find electronic compoment
find electronic componetn find electronic componnet find electronic compoennt find electronic compnoent
find electronic comopnent find electronic copmonent find electronic cmoponent find electronic ocmponent
find electronic componen find electronic omponent find component find eletronic component
find eelctrnic component find electric component find elecronic component find leectrnic component
find eelctric component find electonic component find eerctrnic component find leectric component
find electronc component find erectlonic component find eerctric component find erectric component
find electroic component find erectroic component find eelctroic component find erectrnic component
find leectroic component find eectronic component find eerctroic component find elctronic component
find electrnic component find eelctroik component find electlonik component find leectroik component
find eelctlonik component find erectroik component find leectlonik component find electrnik component
find erectlonik component find eelctrnik component find electrik component find electronik component
find leectrnik component find eelctrik component find eelctronik component find erectrnik component
find leectrik component find leectronik component find erectrik component find erectronik component
find electroik component find eerctronik component find leectloic component find electlik component
find electloik component find eelctlic component find eelctloic component find electlnic component
find erectlnic component find leectlnic component find electlnik component find eelctlnic component
find electlic component find electloic component find erectlic component find erectloic component
find leectlic component find eelctronic component find leectronic component find erectronic component
find eerctronic component find electlonic component find eelctlonic component find leectlonic component
find eerctlonic component find leectloni component find erectrni component find electroni component
find electloi component find eelctloni component find leectrni component find erectroni component
find erectloi component find electli component find eelctrni component find leectroni component
find leectloi component find erectli component find electroi component find eelctroni component
find eelctloi component find leectli component find erectroi component find electri component
find eectroni component find eelctli component find leectroi component find erectri component
find elctroni component find electlni component find eelctroi component find leectri component
find eletroni component find erectlni component find electloni component find eelctri component
find elecroni component find leectlni component find erectloni component find electrni component
find electoni component find eelctlni component find eiectronic component find electronlc component
find electromic component find electronci component find electroinc component find electrnoic component
find electornic component find elecrtonic component find eletcronic component find elcetronic component
find lectronic component electronic component fined electronic component phind electronic component
phend electronic component phiegnd electronic component feignd electronic component pheignd electronic component
fiegnd electronic component fin electronic component feign electronic component pheign electronic component
fiegn electronic component phiegn electronic component fan electronic component phan electronic component
fen electronic component phen electronic component phin electronic component fid electronic component
ind electronic component eignd electronic component iegnd electronic component fnd electronic component
phnd electronic component flnd electronic component fimd electronic component fidn electronic component
fnid electronic component ifnd electronic component

If you would like to add or correct the content of this site, or if you are interested in supporting the efforts of misspelledsearch.com by placing your product information on these find electronic component pages, please contact mistype@gmail.com for details.

This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "find".