mspowerpoint.sum
来自「harvest是一个下载html网页得机器人」· SUM 代码 · 共 24 行
SUM
24 行
#!/bin/sh## MSPowerpoint.sum## Takes a filename as the first argument.# Create a html format file from the input.# Pass that filename to the html summarizer.## Usage: MSPowerpoint.sum filename#if test -z "$TMPDIR"; then TMPDIR="/tmp"fiif test ! -r "$1"; then echo "MSPowerpoint.sum: Cannot read file: $1" 1>&2 exit 1fitfile="$TMPDIR/ppthtml.$$.html"ppthtml $1 > $tfile 2> /dev/nullHTML.sum $tfilerm -f $tfileexit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?