ACC SHELL

Path : /usr/bin/
File Upload :
Current File : //usr/bin/uudepipe

#!/bin/sh
# This file Copyright (c) 1992 Z-Code Software Corp.
# Permission to use, copy, modify, and distribute this material
# for any purpose and without fee is hereby granted, provided
# that the above copyright notice and this permission notice
# appear in all copies, and that the name of Z-Code Software not
# be used in advertising or publicity pertaining to this
# material without the specific, prior written permission
# of an authorized representative of Z-Code.  Z-CODE SOFTWARE
# MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY
# OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED "AS IS",
# WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
if [ -n "`type -p mktemp`" ] ; then
	file=`mktemp ${TMPDIR=/tmp}/UUP$$.XXXXXX` || exit 1
else
	file=${TMPDIR=/tmp}/UUP$$
	rm -f $file
fi
cat ${1-"-"} | sed "s:begin [0-9][0-9]* .*:begin 600 $file:" | uudecode
cat $file && rm -f $file

ACC SHELL 2018