Say I want to copy the contents of a directory excluding files and folders whose names contain the word 'Music'.
cp [exclude-matches] *Music* /target_directory
What should go in place of [exclude-matches] to accomplish this?
|
3
|
|
|
|
|
|
In Bash you can do it by enabling the extglob option, like this (replace ls for cp and add the target directory, of course)
You can later disable extglob with
|
||
|
|
|
|
The You turn it on with In your example, you would initially do:
The full available _ext_ended _glob_bing operators are (excerpt from
So, for example, if you wanted to list all the files in the current directory that are not .c or .h files, you would do:
Of course, normal shell globing works, so the last example could also be written as:
|
|||
|
|
|
Not in bash (that I know of), but:
I know this is not exactly what you were looking for, but it will solve your example. |
||||||||||
|
|
|
One solution for this can be found with find.
Find has quite a few options, you can get pretty specific on what you include and exclude. Edit: Adam in the comments noted that this is recursive. find options mindepth and maxdepth can be useful in controlling this. |
||||||||||
|
|
|
You can also use a pretty simple
|
||
|
|
|
If you want to avoid the mem cost of using the exec command, I believe you can do better with xargs. I think the following is a more efficient alternative to
|
|||
|
|