How can I use negative wildcards in a unix/linux shell? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T22:26:31Zhttp://stackoverflow.com/feeds/question/216995http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/216995/how-can-i-use-negative-wildcards-in-a-unix-linux-shell8How can I use negative wildcards in a unix/linux shell?guy.incognito2008-10-19T21:16:26Z2008-10-21T21:02:34Z
<p>Say I want to copy the contents of a directory excluding files and folders whose names contain the word 'Music'.</p>
<pre><code>cp [exclude-matches] *Music* /target_directory
</code></pre>
<p>What should go in place of [exclude-matches] to accomplish this?</p>
http://stackoverflow.com/questions/216995/how-can-i-use-negative-wildcards-in-a-unix-linux-shell/217004#2170042Answer by Daniel Bungert for How can I use negative wildcards in a unix/linux shell?Daniel Bungert2008-10-19T21:23:13Z2008-10-19T21:39:29Z<p>One solution for this can be found with find.</p>
<pre><code># mkdir foo bar
# touch foo/a.txt foo/Music.txt
# find foo -type f ! -name '*Music*' -exec cp {} bar \;
# ls bar
a.txt
</code></pre>
<p>Find has quite a few options, you can get pretty specific on what you include and exclude.</p>
<p>Edit: Adam in the comments noted that this is recursive. find options mindepth and maxdepth can be useful in controlling this.</p>
http://stackoverflow.com/questions/216995/how-can-i-use-negative-wildcards-in-a-unix-linux-shell/217006#2170063Answer by ejgottl for How can I use negative wildcards in a unix/linux shell?ejgottl2008-10-19T21:23:42Z2008-10-19T21:23:42Z<p>Not in bash (that I know of), but:</p>
<pre><code>cp `ls | grep -v Music` /target_directory
</code></pre>
<p>I know this is not exactly what you were looking for, but it will solve your example.</p>
http://stackoverflow.com/questions/216995/how-can-i-use-negative-wildcards-in-a-unix-linux-shell/217016#2170160Answer by mipadi for How can I use negative wildcards in a unix/linux shell?mipadi2008-10-19T21:32:27Z2008-10-19T21:32:27Z<p>You can also use a pretty simple <code>for</code> loop:</p>
<pre><code>for f in `find . -not -name "*Music*"`
do
cp $f /target/dir
done
</code></pre>
http://stackoverflow.com/questions/216995/how-can-i-use-negative-wildcards-in-a-unix-linux-shell/217017#2170179Answer by Vinko Vrsalovic for How can I use negative wildcards in a unix/linux shell?Vinko Vrsalovic2008-10-19T21:32:42Z2008-10-19T21:32:42Z<p>In Bash you can do it by enabling the extglob option, like this (replace ls for cp and add the target directory, of course)</p>
<pre><code>~/foobar> shopt extglob
extglob off
~/foobar> ls
abar afoo bbar bfoo
~/foobar> ls !(b*)
-bash: !: event not found
~/foobar> shopt -s extglob #Enables extglob
~/foobar> ls !(b*)
abar afoo
~/foobar> ls !(a*)
bbar bfoo
~/foobar> ls !(*foo)
abar bbar
</code></pre>
<p>You can later disable extglob with</p>
<pre><code>shopt -u extglob
</code></pre>
http://stackoverflow.com/questions/216995/how-can-i-use-negative-wildcards-in-a-unix-linux-shell/217026#2170260Answer by Steve for How can I use negative wildcards in a unix/linux shell?Steve2008-10-19T21:40:26Z2008-10-19T21:57:04Z<p>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</p>
<pre><code>find foo -type f ! -name '*Music*' -exec cp {} bar \; # new proc for each exec
find . -maxdepth 1 -name '*Music*' -prune -o -print0 | xargs -0 -i cp {} dest/
</code></pre>
http://stackoverflow.com/questions/216995/how-can-i-use-negative-wildcards-in-a-unix-linux-shell/217208#2172084Answer by ΤΖΩΤΖΙΟΥ for How can I use negative wildcards in a unix/linux shell?ΤΖΩΤΖΙΟΥ2008-10-20T00:15:43Z2008-10-21T12:50:11Z<p>The <code>extglob</code> shell option gives you more powerful regular expressions in the command line.</p>
<p>You turn it on with <code>shopt -s extglob</code>, and turn it off with <code>shopt -u extglob</code>.</p>
<p>In your example, you would initially do:</p>
<pre><code>$ shopt -s extglob
$ cp !(*Music*) /target_directory
</code></pre>
<p>The full available _ext_ended _glob_bing operators are (excerpt from <code>man bash</code>):</p>
<blockquote>
<p>If the extglob shell option is enabled using the shopt builtin, several extended
pattern matching operators are recognized. In the following description, a pat‐
tern-list is a list of one or more patterns separated by a |. Composite patterns
may be formed using one or more of the following sub-patterns:</p>
<ul>
<li><b>?(pattern-list)</b><br />
Matches zero or one occurrence of the given patterns </li>
<li><b>*(pattern-list)</b><br />
Matches zero or more occurrences of the given patterns </li>
<li><b>+(pattern-list)</b><br />
Matches one or more occurrences of the given patterns </li>
<li><b>@(pattern-list)</b><br />
Matches one of the given patterns </li>
<li><b>!(pattern-list)</b><br />
Matches anything except one of the given patterns</li>
</ul>
</blockquote>
<p>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:</p>
<pre><code>$ ls -d !(*@(.c|.h))
</code></pre>
<p>Of course, normal shell globing works, so the last example could also be written as:</p>
<pre><code>$ ls -d !(*.[ch])
</code></pre>