Inverted File Search in Bash

There are two basic ways to exclude a file from a search:

command comment
`ls grep -v exclude`
find -name * -not -name exclude find with a not

bash

28 Words

2010-08-06 19:20 +0000