How can I use negative wildcards in a unix/linux shell? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T22:26:31Z http://stackoverflow.com/feeds/question/216995 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/216995/how-can-i-use-negative-wildcards-in-a-unix-linux-shell 8 How can I use negative wildcards in a unix/linux shell? guy.incognito 2008-10-19T21:16:26Z 2008-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#217004 2 Answer by Daniel Bungert for How can I use negative wildcards in a unix/linux shell? Daniel Bungert 2008-10-19T21:23:13Z 2008-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#217006 3 Answer by ejgottl for How can I use negative wildcards in a unix/linux shell? ejgottl 2008-10-19T21:23:42Z 2008-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#217016 0 Answer by mipadi for How can I use negative wildcards in a unix/linux shell? mipadi 2008-10-19T21:32:27Z 2008-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#217017 9 Answer by Vinko Vrsalovic for How can I use negative wildcards in a unix/linux shell? Vinko Vrsalovic 2008-10-19T21:32:42Z 2008-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&gt; shopt extglob extglob off ~/foobar&gt; ls abar afoo bbar bfoo ~/foobar&gt; ls !(b*) -bash: !: event not found ~/foobar&gt; shopt -s extglob #Enables extglob ~/foobar&gt; ls !(b*) abar afoo ~/foobar&gt; ls !(a*) bbar bfoo ~/foobar&gt; 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#217026 0 Answer by Steve for How can I use negative wildcards in a unix/linux shell? Steve 2008-10-19T21:40:26Z 2008-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#217208 4 Answer by ΤΖΩΤΖΙΟΥ for How can I use negative wildcards in a unix/linux shell? ΤΖΩΤΖΙΟΥ 2008-10-20T00:15:43Z 2008-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>