tattle

来自「This a good VPN source」· 代码 · 共 34 行

TXT
34
字号
#! /bin/sh# tattle [-f] subject address ...# report a freeswan CVS change made by someone other than "owner" of filesPATH=/bin:/usr/bin ; export PATHnoself=yes			# don't mail to person making changecase "$1" in-f)	noself= ; shift	;;esacmsg="freeswan commit: $1"shiftthem=if test "$noself"then	iam="`id -un`"	for who	do		if test " $who" != " $iam"		then			them="$them $who"		fi	doneelse	them="$*"fiif test " $them" != " "then	mail -s "$msg" $themfi

⌨️ 快捷键说明

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