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:36] – rokkitlawnchair | pages:howtos:linuxunix:how_to_find_stuff [2023/03/08 16:31] (current) – [Find files newer than...] mischerh | ||
---|---|---|---|
Line 97: | Line 97: | ||
locate -e --regex " | 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~~ | ~~DISCUSSION~~ | ||
pages/howtos/linuxunix/how_to_find_stuff.1673098577.txt.gz · Last modified: 2023/01/07 13:36 by rokkitlawnchair