Skip to content

Instantly share code, notes, and snippets.

@bitmess
Last active June 5, 2017 07:12
Show Gist options
  • Save bitmess/c859d700e85678733dc711d7a93ee7cd to your computer and use it in GitHub Desktop.
Save bitmess/c859d700e85678733dc711d7a93ee7cd to your computer and use it in GitHub Desktop.
svn update folders
#!/bin/bash
for file in ./*
do
if [ -d "$file" ]; then
svn up "$file"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment