Created
August 12, 2016 19:36
-
-
Save gelias/778d99d78835198736c9fe0b4cac748c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| HOST='host' | |
| USER='username' | |
| PASSWD='password' | |
| REMOTE_FOLDER='remote_folder' | |
| ftp -n -v $HOST << EOT | |
| ascii | |
| user $USER $PASSWD | |
| prompt | |
| cd $REMOTE_FOLDER | |
| ls -la | |
| bye | |
| EOT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment