FTP Upload shell script
#/bin/sh
SERVER=192.168.1.1
USER=username
PASSWORD=password
FILE=filename
ftp -n $SERVER <<End-Of-Session
user $USER "$PASSWORD"
binary
ha
prom
put $FILE
bye
End-Of-Session
put.sh로 저장하고 아래와 같이 하면 업로드 된다.
chmod +x put.sh
./put.sh
댓글
댓글 쓰기