Skip to content

Instantly share code, notes, and snippets.

@rafaelrinaldi
Created August 22, 2009 23:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelrinaldi/173042 to your computer and use it in GitHub Desktop.
Save rafaelrinaldi/173042 to your computer and use it in GitHub Desktop.
Check if there's any .svn file into some folder
# Check if there's any .svn file into some folder
has-svn-files() {
if [[ `find $1 -name *.svn` = "" ]]; then
echo "false"
else
echo "true"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment