Skip to content

Instantly share code, notes, and snippets.

@schafeld
Created March 24, 2015 15:04
Show Gist options
  • Save schafeld/ba10f0ccc571b9b0dfef to your computer and use it in GitHub Desktop.
Save schafeld/ba10f0ccc571b9b0dfef to your computer and use it in GitHub Desktop.
List all SVN-URLs of folders in current directory
for dirname in `ls -d */`; do svn info ${dirname} | grep "URL:" -m 1; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment