contrib/plan9/9mail
author Yuya Nishihara <yuya@tcha.org>
Sat, 17 Oct 2020 21:57:21 +0900
changeset 45793 4db5671d57d9
parent 19613 4bfd3c7160d9
permissions -rw-r--r--
help: update command synopsis to clarify "cp --forget" only takes destinations I'm a bit confused while reading 03690079d7dd, which says "a destination file", but the code loops over matched files.

#!/bin/rc
# 9mail - Mercurial email wrapper for upas/marshal

fn usage {
	echo >[1=2] usage: mercurial/9mail -f from to [cc]
	exit usage
}

from=()
cc=()
to=()

switch($1){
case -f
	from=$2
case *
	usage
}

to=($3)
if(~ $#* 4)
	cc=(-C $4)

upasname=$from
upas/marshal $cc $to