smail

来自「linux脚本编程的例子」· 代码 · 共 16 行

TXT
16
字号
function cleanup {    if [ -e $msgfile ]; then          mv $msgfile dead.letter    fi    exit}trap cleanup INT TERMmsgfile=/tmp/msg$$cat > $msgfile# send the contents of $msgfile to the specified mail address...rm $msgfile

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?