📄 ff2csv.command
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -