我对bash脚本有一些问题。我需要添加一些内容。我的脚本需要在某个时间运行,但我不知道该怎么做。它应该像这样工作: 我有一个变量然后我分配一个像3200s的时间。当我运行程序时,脚本将每3200秒创建一次备份,但仅在某些文件发生更改时才会创建。我做错了什么?
!/bin/bash
SOURCE="/var/www/my_web/load/"
BACKUP="/home/your_user/load/"
LBACKUP="/home/your_user/load/latest-full/"
DATE=$(date +%Y-%m-%d-%T)
DESTINATION="$BACKUP"/"$DATE"-diff/
rsync -av --compare-dest="$LBACKUP" "$SOURCE" "$DESTINATION"
cd "$DESTINATION"
find . -depth -type d -empty -delete
答案 0 :(得分:0)
这里我已将该功能添加到您的脚本中:
用法:
./yourscript.sh 3200
脚本:
#!/bin/bash
# make sure you gave a number of seconds:
[ 0$1 -gt 0 ] || exit
while true; do
SOURCE="/var/www/my_web/load/"
BACKUP="/home/your_user/load/"
LBACKUP="/home/your_user/load/latest-full/"
DATE=$(date +%Y-%m-%d-%T)
DESTINATION="$BACKUP"/"$DATE"-diff/
rsync -av --compare-dest="$LBACKUP" "$SOURCE" "$DESTINATION"
cd "$DESTINATION"
find . -depth -type d -empty -delete
sleep $1
done
如果收到bash: ./yourscript.sh: Permission denied
之类的错误,则需要执行一次:chmod +x yourscript.sh
以使脚本可执行。
即使离开终端窗口后仍继续在后台运行:
nohup ./yourscript.sh 3200 &
即使在重新启动后也按计划在后台运行:
使用cron
,例如Using crontab to execute script every minute and another every 24 hours