Created
November 22, 2013 18:11
-
-
Save smujohnson/7604369 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sjohnson@web1:/tmp/sjohnson/findex$ find . \( -type d -a -name bork \) -o -print | |
. | |
./foo | |
./foo/bar | |
./foo/baz | |
./foo/blarg | |
./foo/blarg/bork | |
./bork/bar | |
./bork/foo | |
sjohnson@web1:/tmp/sjohnson/findex$ find . -print | |
. | |
./foo | |
./foo/bar | |
./foo/baz | |
./foo/blarg | |
./foo/blarg/bork | |
./bork | |
./bork/bar | |
./bork/foo | |
./bork/foo/bork |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment