Shell-Script

在 crontab 中使用“%”

  • May 1, 2015

我正在嘗試添加一個 cron 作業來執行從遠端伺服器到(Ubuntu12)本地機器的 rsync 並創建一個日誌文件。

下面是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 包。

好吧 - 想通了。發回以防萬一有人在某天某個時候遇到它。 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

引用自:https://unix.stackexchange.com/questions/199761