1 2 3 4 5 6 7 8
#!/usr/bin/env bash find "${1}" -regextype sed -regex "${2}" |\ while read path;do revision=$(svn info "$path"|grep ^Revision:|cut -d ' ' -f 2) echo "${path}@${revision}" done