source:
npl/c
Last change on this file was 0105685, checked in by , 8 years ago | |
---|---|
|
|
File size: 212 bytes |
Rev | Line | |
---|---|---|
[0105685] | 1 | #!/bin/bash |
2 | ||
3 | for PKG in `find -name '*.pkg'`; do | |
4 | SVNSTATUS=`svn status -v "$PKG"` | |
5 | BUILD=`echo "$SVNSTATUS" | egrep -o '[0-9]+' | head -n 2 | tail -n1` | |
6 | echo $BUILD > `echo "$PKG"| sed 's/.pkg$//g'`.build | |
7 | done |
Note: See TracBrowser
for help on using the repository browser.