Skip to content

Instantly share code, notes, and snippets.

@lovellfelix
Created August 15, 2014 14:46
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lovellfelix/0a4d634aa5dc5984828c to your computer and use it in GitHub Desktop.
Save lovellfelix/0a4d634aa5dc5984828c to your computer and use it in GitHub Desktop.
Simple shell script to download file from a FTP Server
#!/bin/bash
HOST=[HOSTNAME]
USER=[USERNAME]
PASS=[PASSWORD]
ftp -inv $HOST << EOF
user $USER $PASS
lcd /PATH/TO/LOCAL/DIRECTORY
mget FILENAME*
bye
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment