sh autoftp

카테고리 없음 2015. 4. 23. 17:15

$ cat autoftp.sh

#! /bin/sh

ftp -i -n 123.45.67.89 << ENDOFFTP

user user1234 password5678

hash

put $1

bye

ENDOFFTP

echo " TO ftpserver, PUT file $1 ";