[ create a new paste ] login | about

Link: http://codepad.org/9rIfhSxD    [ raw code | fork ]

Plain Text, pasted on Jun 20:
1
2
3
4
5
6
7
8
#!/usr/bin/env bash

find . -regextype sed -regex "${1}" |\
while read path;do
    revision=$(svn info "$path"|grep ^Revision:|cut -d ' ' -f 2)
    echo "${path}@${revision}"
done



Create a new paste based on this one


Comments: