comparison scripts/hgall.groovy @ 93:f351338a3b3a

adding useful scripts
author smith@nwoca.org
date Wed, 22 Feb 2012 19:14:04 +0000
parents
children
comparison
equal deleted inserted replaced
92:90325a10fe95 93:f351338a3b3a
1
2 cmd = args ? args.join(' ') : 'out'
3
4 new File(".").eachDirRecurse { d ->
5
6 if ( new File(d,".hg").exists() ) {
7 println "$d.absolutePath: $cmd \n-----------------------------------"
8 println "hg -R ${d.absolutePath} ${cmd}".execute().text
9
10 }
11 }