#!/bin/sh
UUDECODE=uudecode
which "$UUDECODE" > /dev/null 2>&1 &&
	$UUDECODE -o - "$1" | display - ||
	echo "Please install 'uudecode' to use this script." >&2
