Friday, March 12, 2010

FTP

#! /bin/ksh
#--------------------------------------------------
# kill the file in case nothing is found
#--------------------------------------------------
rm /ux012/lynn/vax.filelist
#--------------------------------------------------
# start ftp from vax 
#   i : turns off interactive prompting
#   n : turns off manual login
#--------------------------------------------------
ftp -in lark <<EOF
quote user ltobias
quote pass lct1234
ls ms123:[xyz]*.txt /ux012/lynn/vax.filelist
quit
EOF
#--------------------------------------------------
# after closing the ftp, display what's in the file
#--------------------------------------------------
more /ux012/lynn/vax.filelist

No comments:

Post a Comment