|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /proc/self/root/usr/share/doc/subversion-1.3.2/tools/dev/iz/ |
Upload File : |
#!/bin/sh
# MacOS X do-hickie to run ff2csv.py, with parameters, by double-click.
flags="hq"
Usage () {
args="$*"
if [[ -n "$args" ]] ; then
echo >&2 "$args"
fi
echo >&2 "Usage: $0 [-$flags] [querysetfile [csvfile]]
Run ff2csv.py, fetching and summarizing SVN bug status."
}
while getopts $flags flag; do
case "$flag" in
h|q) Usage; exit 0;;
esac
done
# we want to run in the same folder as this script, not
# the users home folder
cd `dirname $0`
date=`date +%m%d`
./ff2csv.py ${1:-query-set-1-$date.tsv} ${2:-core-history-$date.csv}