📄 spell.sh
字号:
case $# in1) prep $1 | sort -u | comm -23 - /usr/lib/dict/words ;;3) if [ x$1 = "x-d" ] then if [ ! -r /usr/lib/dict/$2 ] then echo The dictionary file /usr/lib/dict/$2 is not readable exit fi prep $3 | sort -u | comm -23 - /usr/lib/dict/$2 else echo Usagex: spell [-d dict] file fi ;;*) echo Usage: spell [-d dict] file ;;esac
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -