22 lines
793 B
Bash
22 lines
793 B
Bash
#!/bin/bash
|
|
#===================================================================
|
|
# Filename : auto_start_self.sh
|
|
# Function :
|
|
# Usage :
|
|
# Author : Manford Fan
|
|
# Date : 2022-04-12 09:50
|
|
# Version : Version 0.1
|
|
# Disclaimer : The author is NOT responsible for any loss caused
|
|
# by the user's own operations.
|
|
# And More : If you find there are some bugs in this script
|
|
# Or you have better ideas, please do contact me
|
|
# via E-mail -- mffan0922@163.com
|
|
#===================================================================
|
|
|
|
rclone sync -P /opt/media/Kindle/ Onedrive:/A-Book/Kindle/
|
|
rclone sync -P /opt/media/Music/ Onedrive:/B-Media/Music/Koel/
|
|
rclone sync -P Onedrive:/ /opt/webdav/wd/72-Backups/Onedrive/ --exclude=/E-Github/**
|
|
|
|
|
|
|