Skip to content

Instantly share code, notes, and snippets.

@eriwen
Created September 6, 2011 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eriwen/1197994 to your computer and use it in GitHub Desktop.
Save eriwen/1197994 to your computer and use it in GitHub Desktop.
Get file from FTP
#!/bin/sh
HOST='some.ftp.server'
USER='myuser'
PASSWD='mypass'
FILE='myfile'
ftp -n $HOST <<END_SCRIPT
user ${USER} ${PASSWD}
cd /path/to/something
get $FILE
quit
END_SCRIPT
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment