mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-22 09:47:21 +01:00
18 lines
362 B
Bash
18 lines
362 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
#
|
||
|
# Prerequisite:
|
||
|
# rclone configured with remote Amazon Cloud Drive named `amazon`
|
||
|
#
|
||
|
# brew install rclone
|
||
|
# rclone config
|
||
|
|
||
|
# http://rclone.org/commands/rclone_copy/
|
||
|
# http://rclone.org/commands/rclone_sync/
|
||
|
|
||
|
# Sync Movies
|
||
|
rclone sync $MOVIES_DIR amazon:/Movies --update
|
||
|
|
||
|
# Sync TV Shows
|
||
|
rclone sync $TVSHOWS_DIR amazon:/TV\ Shows --update
|