📄 teammail-sample.sh
字号:
#!/bin/sh#set -xset -e. $HOME/freeswan-regress-env.shrecipients=`echo $NIGHTLY_WATCHERS | sed -e 's/,/ /g'`#recipients='mcr@freeswan.org hugh@freeswan.org'tmpfile=/tmp/msg$$cat - >$tmpfilesed -n -e '1,/^$/p' $tmpfile >$tmpfile.headerssed -n -e '/^$/,$p' $tmpfile >$tmpfile.body# encrypt body#gpg --encrypt --armor -r mcr@freeswan.org --batch --yes $tmpfile.body# reset home just in case.HOME=/freeswan/users/build export HOMEPGPPATH=$HOME/.pgp export PGPPATHpgp -eat $tmpfile.body $recipients ( cat $tmpfile.headers echo cat $tmpfile.body.asc ) | cat | /usr/sbin/sendmail -t rm -f $tmpfile $tmpfile.headers $tmpfile.body $tmpfile.body.asc
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -