view contrib/plan9/9mail @ 28126:562a073a2a1b

tests: load json with no fallback The json module should be available in Python 2.6 or newer.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 09 Jan 2016 13:20:15 +0900
parents 4bfd3c7160d9
children
line wrap: on
line source

#!/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