Setting up a ftp script can be very useful, especially if you have a repetitive task that happens on a regular basis.
#!/bin/sh
HOST=’ftp.yourserver.com’
USER=’myusername’
PASSWD=’mypassword’
FILE=’file.txt’
ftp -n $HOST <
Setting up a ftp script can be very useful, especially if you have a repetitive task that happens on a regular basis.
#!/bin/sh
HOST=’ftp.yourserver.com’
USER=’myusername’
PASSWD=’mypassword’
FILE=’file.txt’
ftp -n $HOST <