view lib-src/tm-plain @ 12:bcdc7deadc19 r19-15b7

Import from CVS: tag r19-15b7
author cvs
date Mon, 13 Aug 2007 08:48:16 +0200
parents 49a24b4fd526
children 0293115a14e9
line wrap: on
line source

#!/bin/sh -
#
# $Id: tm-plain,v 1.2 1996/12/29 00:14:55 steve Exp $
#

if [ "$TM_TMP_DIR" = "" ]; then
	TM_TMP_DIR=/tmp
	export TM_TMP_DIR
fi
if [ "$5" = "" ]; then
	filename="$TM_TMP_DIR/mime$$.pln"
else
	filename="$TM_TMP_DIR/$5"
fi

case "$4" in
"play")
	echo "$2; $3 ->"
	tmdecode "$3" "$1" /dev/stdout
	;;
"extract")
	echo "$2; $3 -> $filename"
	echo "extract to $filename"
	tmdecode "$3" "$1" $filename
	;;
"print")
	echo "$2; $3 ->"
	tmdecode "$3" "$1" /dev/stdout | lpr
	;;
esac