This file contains 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 | |
# USER AND TARGET DIRECTORY | |
user=youruser | |
backups=/your/chosen/backup/directory/plex_backups | |
# SOURCE DIRECTORY FOR BACKUP | |
SOURCE_DIR='/your/source/directory' | |
if [[ $EUID > 0 ]] |
This file contains 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 | |
user=youruser | |
backups=/your/chosen/backup/directory | |
# FTP LOGIN | |
FTPHOST='ftp://host.domain.something' | |
FTPUSER='username' | |
FTPPASSWORD='password' |
This file contains 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: Simon Tipping | |
# @description: A script to mirror local folder to distant folder using lftp - Based on Alexandre Plennevaux's "MIRROR DISTANT FOLDER TO LOCAL FOLDER VIA FTP" script https://gist.github.com/pixeline/0f9f922cffb5a6bba97a | |
# | |
# FTP LOGIN | |
HOST='sftp://ftp.domain.com' | |
USER='ftpusername' | |
PASSWORD='ftppassword' | |
# DISTANT DIRECTORY |