#!/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/pcxget,v 1.4 1989/01/10 08:44:16 jdm Exp $
# $Locker:  $
#
hostname=`echo $DISPLAY | sed 's/:.*$//'`
for i in $*
do
echo ""
echo recv from dos: $i
tftp $hostname <<EOF
get $i
quit
EOF
echo ""
done
