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?
|
Say I want to copy the contents of a directory excluding files and folders whose names contain the word 'Music'.
What should go in place of [exclude-matches] to accomplish this? | ||||
|
feedback
|
|
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
| |||
|
feedback
|
|
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:
| |||||||||
feedback
|
|
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. | |||||||||||
feedback
|
|
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. | |||||||||||
feedback
|
|
You can also use a pretty simple
| |||
feedback
|
|
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
| ||||
|
feedback
|
|
My personal preference is to use grep and the while command. This allows one to write powerful yet readable scripts ensuring that you end up doing exactly what you want. Plus by using an echo command you can perform a dry run before carrying out the actual operation. For example:
will print out the files that you will end up copying. If the list is correct the next step is to simply replace the echo command with the copy command as follows:
| ||||
|
feedback
|
|
Using
It loops over all files matching NOTE: | ||||
|
feedback
|
|
this would do it excluding exactly 'Music'
this and that for excluding things like Music?* or *?Music
| ||||
|
feedback
|
|
Thanks for this question, it was very helpful. And because it was that helpful, I'd like to contribute something to it I found out myself (and which took me minutes to figure out) $ shopt -s extglob
will list me everything BUT mp3s. BUT, you might want to list everything but MP3s nor do you want to list OGG files. (Yes, indeed some still do use this format LOL) The solution is:
Voila! =) Neither ogg's nor mp3's will be displayed, which lets you look for possible album art files or similar without having to make your eyeballs spin because of getting pagefuls of mp3s listed. | ||||
|
feedback
|