Published in: Bash
Simple but useful.
find . -type d \! \( -name '.svn' -prune \) -print # find exclusive to directories within current directory find . \! \( -name '.svn' -prune \) -print # list all items (files and dirs) in current directory
You need to login to post a comment.
