home *** CD-ROM | disk | FTP | other *** search
/ The UNIX CD Bookshelf / OREILLY_TUCB_UNIX_CD.iso / upt / examples / ALPHA / ARCHIVE / FTPFILE.Z / FTPFILE / sbin / ftpfile
Encoding:
Text File  |  1993-01-01  |  342 b   |  18 lines

  1. #!/bin/sh
  2. #
  3. # ftpfile - Use a here document to transfer a file using anonymous ftp
  4. # from a shell script.
  5. #
  6. # Usage: ftpfile machine file
  7. #
  8. # set -x   # Print commands and their arguments as they are executed
  9.  
  10. SOURCE=$1
  11. FILE=$2
  12. BFILE=`basename $FILE`
  13. ftp -n $SOURCE <<EndFTP
  14. ascii
  15. user anonymous $USER@`hostname`
  16. get $FILE /tmp/$BFILE
  17. EndFTP
  18.