source:
npl/c
@
26ffad7
Last change on this file since 26ffad7 was 0105685, checked in by , 8 years ago | |
---|---|
|
|
File size: 212 bytes |
Line | |
---|---|
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.