show/hide this revision's text 3 added 14 characters in body

One solution for this can be found with find.

# mkdir foo bar
# touch foo/a.txt foo/Music.txt
# find foo -type f ! -name '*Music*' -exec cp {} bar \;
# ls bar
a.txt

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.

show/hide this revision's text 2 added 119 characters in body

One solution for this can be found with find.

# mkdir foo bar
# touch foo/a.txt foo/Music.txt
# find foo -type f ! -name '*Music*' -exec cp {} bar \;
# ls bar
a.txt

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 in controlling this.

show/hide this revision's text 1

One solution for this can be found with find.

# mkdir foo bar
# touch foo/a.txt foo/Music.txt
# find foo -type f ! -name '*Music*' -exec cp {} bar \;
# ls bar
a.txt

Find has quite a few options, you can get pretty specific on what you include and exclude.