crontabで「%」を使用する

crontabで「%」を使用する

リモートサーバーからマイ(Ubuntu12)ローカルコンピュータにrsyncを実行し、ログファイルを生成するためにcronジョブを追加しようとしています。

以下はcrontab-l

00 18 * * * rsync -a -v --delete -e ssh user@centosvm:/home/user/rsync-test ~/backup > ~/rsync$(date +%Y%m%d_%H%M%S).log 2>&1

私の仕事に文法エラーがあるという電子メールが続きます。

Received: by work-virtual-machine (Postfix, from userid 1002)

        id 697ADA24A0; Thu, 30 Apr 2015 16:21:01 -0700 (PDT)

From: root@work-virtual-machine (Cron Daemon)

To: user@work-virtual-machine

Subject: Cron <user@work-virtual-machine> "rsync -a -v --delete -e ssh user@centosvm:/home/user/rsync-test ~/backup > /home/user/rsync$(date +

Content-Type: text/plain; charset=ANSI_X3.4-1968

X-Cron-Env: <SHELL=/bin/sh>

X-Cron-Env: <HOME=/home/user>

X-Cron-Env: <PATH=/usr/bin:/bin>

X-Cron-Env: <LOGNAME=user>

Message-Id: <20150430232101.697ADA24A0@work-virtual-machine>

Date: Thu, 30 Apr 2015 16:21:01 -0700 (PDT)

/bin/sh: 1: Syntax error: end of file unexpected (expecting ")")

unix2dosパッケージもインストールしました。

ベストアンサー1

わかりました - 見つけました。誰かがある時点でこのコンテンツを発見した場合に備えて、このコンテンツを再公開します。 The % sign has a special meaning in crontab. it's changed to newline and any string after the first % will be sent to the command as standard input. To force cron to interpret it literally, you have to escape it:

00 18 * * * rsync -a -v --delete -e ssh user@centosvm:/home/user/rsync-test ~/backup > ~/rsync$(date +\%Y\%m\%d_\%H\%M\%S).log 2>&1

おすすめ記事