Forked from pixeline/mirror_remote_directory_to_local_directory
Created
January 11, 2018 15:49
-
-
Save wicadmin/78a86f969cb46f02d53312a5485f15f6 to your computer and use it in GitHub Desktop.
Bash script using lftp to mirror remote directory to local directory, thus keeping the local directory synchronized with the remote one.
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/sh | |
# @author: Alexandre Plennevaux | |
# @description: MIRROR DISTANT FOLDER TO LOCAL FOLDER VIA FTP | |
# | |
# FTP LOGIN | |
HOST='sftp://ftp.domain.com' | |
USER='ftpusername' | |
PASSWORD='ftppassword' | |
# DISTANT DIRECTORY | |
REMOTE_DIR='/absolute/path/to/remote/directory' | |
#LOCAL DIRECTORY | |
LOCAL_DIR='/absolute/path/to/local/directory' | |
# RUNTIME! | |
echo | |
echo "Starting download $REMOTE_DIR from $HOST to $LOCAL_DIR" | |
date | |
lftp -u "$USER","$PASSWORD" $HOST <<EOF | |
# the next 3 lines put you in ftpes mode. Uncomment if you are having trouble connecting. | |
# set ftp:ssl-force true | |
# set ftp:ssl-protect-data true | |
# set ssl:verify-certificate no | |
# transfer starts now... | |
mirror --use-pget-n=10 $REMOTE_DIR $LOCAL_DIR; | |
exit | |
EOF | |
echo | |
echo "Transfer finished" | |
date |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment