?? antiexcel
字號(hào):
#!/bin/bashpth=~/binif [ "$1" == "" ]; then cat <<DONE Excel file viewer for text console USAGE: $0 FileName AUTHOR: Peter Borkuti, 2003. 01DONEexit 0fi;# The place of the csv fileTMPFILE=`mktemp`if [ $? -ne 0 ];then echo "I cant create temporary file" exit 0fi;# Make a ';' delimited csv file from the input $pth/antiexcel-parse.pl $1 > $TMPFILE$pth/csvviewer $TMPFILE |\# BEGIN filters <-- Put your own postfilters here# Windows's Long Hyphens into minus signs tr '\226' '-' |\# END filters# -S - Dont break long linesless -Srm -f $TMPFILE
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -