Created
March 24, 2015 15:04
-
-
Save schafeld/ba10f0ccc571b9b0dfef to your computer and use it in GitHub Desktop.
List all SVN-URLs of folders in current directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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