#!/bin/sh
#
# PC-Xview TFTP front end utility
# Copyright (C) 1988, 1989 by Graphic Software Systems, Inc.
# All rights reserved
#
# $Header: /xqa2/build/xview/RCS/pcxput,v 1.4 1989/01/10 08:44:20 jdm Exp $
# $Locker:  $
#
hostname=`echo $DISPLAY | sed 's/:.*$//'`
for i in $*
do
echo ""
echo sending to dos: $i
tftp $hostname <<EOF
put $i
quit
EOF
echo ""
done
