pages:howtos:linuxunix:how_to_find_stuff
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pages:howtos:linuxunix:how_to_find_stuff [2023/01/07 13:34] – removed - external edit (Unknown date) A User Not Logged in | pages:howtos:linuxunix:how_to_find_stuff [2023/03/08 16:31] (current) – [Find files newer than...] mischerh | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{tag> | ||
+ | ====== How to find stuff ====== | ||
+ | * https:// | ||
+ | |||
+ | ===== recursively find specific string in filename of files with specific suffix ===== | ||
+ | * https:// | ||
+ | |||
+ | Case sensitive: | ||
+ | <sxh bash; gutter: false> | ||
+ | find . -name ' | ||
+ | </ | ||
+ | |||
+ | Case insensitive: | ||
+ | <sxh bash; gutter: false> | ||
+ | find . -iname ' | ||
+ | </ | ||
+ | |||
+ | Using find's -regex argument: | ||
+ | <sxh bash; gutter: false> | ||
+ | find . -regex ' | ||
+ | </ | ||
+ | |||
+ | Or just using -name: | ||
+ | <sxh bash; gutter: false> | ||
+ | find . -name ' | ||
+ | </ | ||
+ | |||
+ | The -o repreents an OR condition and you can add as many as you wish within the braces. So this says to find all files containing the word " | ||
+ | <sxh bash; gutter: false> | ||
+ | find -name " | ||
+ | </ | ||
+ | |||
+ | As an alternative to using -regex option on find, since the question is labeled bash, you can use the brace expansion mechanism: | ||
+ | <sxh bash; gutter: false> | ||
+ | eval find . -false "-o -name Robert" | ||
+ | </ | ||
+ | |||
+ | This q/a shows how to use find with regular expression: [[https:// | ||
+ | <sxh bash; gutter: false> | ||
+ | ' | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | As a script you can use: | ||
+ | <sxh bash; gutter: false> | ||
+ | find " | ||
+ | </ | ||
+ | * save it as findcc | ||
+ | * chmod 755 findcc | ||
+ | |||
+ | and use it as | ||
+ | <sxh bash; gutter: false> | ||
+ | findcc [name] [[search_direcory]] | ||
+ | </ | ||
+ | |||
+ | e.g. | ||
+ | <sxh bash; gutter: false> | ||
+ | findcc | ||
+ | findcc Joe # default directory ' | ||
+ | findcc Joe / | ||
+ | </ | ||
+ | |||
+ | note you cant use | ||
+ | <sxh bash; gutter: false> | ||
+ | findcc / | ||
+ | </ | ||
+ | |||
+ | also as alternative, | ||
+ | <sxh bash; gutter: false> | ||
+ | find " | ||
+ | </ | ||
+ | |||
+ | and | ||
+ | <sxh bash; gutter: false> | ||
+ | findcc directory grep_options | ||
+ | </ | ||
+ | |||
+ | like | ||
+ | <sxh bash; gutter: false> | ||
+ | findcc . -P '/ | ||
+ | </ | ||
+ | |||
+ | Using bash globbing (if find is not a must) | ||
+ | <sxh bash; gutter: false> | ||
+ | ls Robert.{pdf, | ||
+ | </ | ||
+ | |||
+ | Recurisvely with ls: (-al for include hidden folders) | ||
+ | <sxh bash; gutter: false> | ||
+ | ftype=" | ||
+ | ls -1R *.${ftype} | ||
+ | </ | ||
+ | |||
+ | For finding the files in system using the files database: | ||
+ | <sxh bash; gutter: false> | ||
+ | locate -e --regex " | ||
+ | </ | ||
+ | |||
+ | ===== recursively find files with a specific suffix and copy them ===== | ||
+ | * https:// | ||
+ | * https:// | ||
+ | |||
+ | Under unix, I want to copy all files with a certain extension (all excel files) from all subdirectories to another directory. I have the following command: | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | cp --parents `find -name \*.xls*` / | ||
+ | </ | ||
+ | |||
+ | |||
+ | The problems with this command are: | ||
+ | * It copies the directory structure as well, and I only want the files (so all files should end up in / | ||
+ | * It does not copy files with spaces in the filenames (which are quite a few) | ||
+ | |||
+ | Any solutions for these problems? | ||
+ | |||
+ | ---- | ||
+ | ''< | ||
+ | |||
+ | The way you've written this, the find executes, and the output is put onto the command line such that cp can't distinguish between the spaces separating the filenames, and the spaces within the filename. It's better to do something like | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | $ find . -name \*.xls -exec cp {} newDir \; | ||
+ | </ | ||
+ | |||
+ | in which cp is executed for each filename that find finds, and passed the filename correctly. Here's more info on this technique. | ||
+ | |||
+ | Instead of all the above, you could use zsh and simply type | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | $ cp **/*.xls target_directory | ||
+ | </ | ||
+ | |||
+ | zsh can expand wildcards to include subdirectories and makes this sort of thing very easy. | ||
+ | |||
+ | <WRAP center round tip 60%> | ||
+ | Bash 4.0+ and ksh93 also supports < | ||
+ | </ | ||
+ | |||
+ | That exec is technically less efficient than passing into xargs, which will do it all in as few cp calls as possible: | ||
+ | <sxh bash; gutter: false> | ||
+ | find . -name ' | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | From all of the above, I came up with this version. This version also works for me in the mac recovery terminal. | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | find ./ -name ' | ||
+ | </ | ||
+ | |||
+ | |||
+ | It will look in the current directory and recursively in all of the sub directories for files with the xsl extension. It will copy them all to the target directory. | ||
+ | |||
+ | cp flags are: | ||
+ | * p - preserve attributes of the file | ||
+ | * r - recursive | ||
+ | * v - verbose (shows you whats being copied) | ||
+ | |||
+ | |||
+ | |||
+ | I had a similar problem. I solved it using: | ||
+ | <sxh bash; gutter: false> | ||
+ | find dir_name ' | ||
+ | </ | ||
+ | The ' | ||
+ | |||
+ | I also had to do this myself. I did it via the --parents argument for cp: | ||
+ | <sxh bash; gutter: false> | ||
+ | find SOURCEPATH -name filename*.txt -exec cp --parents {} DESTPATH \; | ||
+ | </ | ||
+ | |||
+ | |||
+ | you may remove the --parents but there is a risk of collision if multiple files bear the same name. | ||
+ | <sxh bash; gutter: false> | ||
+ | find [SOURCEPATH] -type f -name ' | ||
+ | while read P; do cp --parents " | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | In 2022 the zsh solution also works in Linux Bash: | ||
+ | <sxh bash; gutter: false> | ||
+ | cp **/ | ||
+ | </ | ||
+ | works as expected. | ||
+ | |||
+ | |||
+ | ===== Find files newer than... ===== | ||
+ | Thanks to liberanet - pablos - #kde =) | ||
+ | > I use the following technique to find files: | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | cd && touch than_me | ||
+ | </ | ||
+ | |||
+ | do whatever has to be done | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | find . -mount -newer than_me | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ---- | ||
+ | ~~DISCUSSION~~ | ||