|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21585/root/usr/share/doc/subversion-1.6.11/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}