はじめに
Dropbox-Uploaderをcronで実行する方法です。
方法
Dropbox-Uploaderのダウンロード
公式を参考にして、Dropbox-Uploader 一式をダウンロードします。 Dropbox-Uploader/README.md at master · andreafabrizi/Dropbox-Uploader · GitHub
(事前準備)Git のインストール
$ sudo apt install git
ダウンロード
$ git clone https://github.com/andreafabrizi/Dropbox-Uploader.git
実行権限付与
$ sudo chmod +x dropbox_uploader.sh
cron に登録する
cron に直接 dropbox_uploader.sh を指定しても実行されないので、シェルスクリプトを一つ噛ませてから、それを cron で実行するようにします。
シェルスクリプト作成(test.sh)
#!bin/sh
bash /hoge/fuga/to/Dropbox-Uploader/dropbox_uploader.sh -s -f /hoge/fuga/to/.dropbox_uploader upload hoge/fuga/to/the/local/file/dir/ /hoge/fuga/to/the/dropbox/file/dir
実行権限付与
$ sudo chmod +x /hoge/fuga/to/the/test.sh
cron 設定
0 * * * 1-5 /hoge/fuga/to/test.sh