Skip to content

Instantly share code, notes, and snippets.

@allex
Created May 14, 2013 02:04
Show Gist options
  • Save allex/5573100 to your computer and use it in GitHub Desktop.
Save allex/5573100 to your computer and use it in GitHub Desktop.
#!/bin/sh
# ================================================
# Description: List all svn repos url
# Last Modified:
# Author: allex (allex.wxn@gmail.com)
# ================================================
for f in `find . -type d -name ".svn"`; do
cd `dirname $f`;
svn info . | awk '/URL: / { print $2 }';
cd - > /dev/null;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment