📄 rtf.sum
字号:
#!/bin/sh## RTF.sum - takes a filename as the first argument. Create a# html format file from the input. Pass that filename to the# html summarizer.## Usage: RTF.sum filename#if test -z "$TMPDIR"; then TMPDIR="/tmp"fiif test ! -r "$1"; then echo "RTF.sum: Cannot read file: $1" 1>&2 exit 1fitfile="$TMPDIR/rtf2html.$$.html"# uncomment this if you want the included converterrtf2html $1 > $tfile 2> /dev/null# uncomment this if you have GNU UnRTF installed#unrtf --nopict $1 > $tfile 2> /dev/nullHTML.sum $tfilerm -f $tfileexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -