mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-22 01:37:14 +01:00
18 lines
362 B
Bash
Executable File
18 lines
362 B
Bash
Executable File
#!/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
|