ff2csv.command

来自「subversion-1.4.3-1.tar.gz 配置svn的源码」· COMMAND 代码 · 共 28 行

COMMAND
28
字号
#!/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;;    esacdone# we want to run in the same folder as this script, not# the users home foldercd `dirname $0`date=`date +%m%d`./ff2csv.py ${1:-query-set-1-$date.tsv} ${2:-core-history-$date.csv}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?