我有以下目录结构:
/test_dir/logs:
admin-access.log
admin-access.log00001
admin-access.log00002
admin-access.log00003
admin-access.log00004
admin-access.log00005
/test_dir/installer_logs:
AITimeListener.log
installer.log
/test_dir/servers/clust1/logs/:
clust1.out
clust1.out00001
clust1.out00002
clust1.out00003
clust1.out00004
我使用以下命令集来存档包含排除项的文件夹:
cd /test_dir/
tar -czhf /backup/test_dir_node01_2016-02-19_initial.tgz --anchored --exclude "logs/*" --exclude "servers/*/logs/*" --exclude "installer_logs/*" *
结果归档后,我得到了以下目录结构:
/backup/logs:
no files here
/backup/installer_logs:
no files here
/backup/servers/clust1/logs/:
no files here
我试图对bash脚本进行编码,该脚本应该做同样的事情并且没有运气, 这是我的代码:
backup.parameters文件:
NC_HOME=/test_dir
BACKUP_HOME=/backup
EXCLUDE_LIST="
--exclude \"logs/*\"
--exclude \"servers/*/logs/*\"
--exclude \"installer_logs/*\"
"
backup_initial.sh文件
#!/bin/bash
if [ ! -f backup.parameters ]; then echo "backup.parameters file not found! exiting...."; exit 1; fi
. ./backup.parameters
TAR_ARGS="czf"
DATE=`date +%F`
HOSTNAME=`hostname`
cd $NC_HOME
echo "Initial backup started on $HOSTNAME at `date \"+%F %T\"`"
tar -czhf $BACKUP_HOME/$(basename $NC_HOME)_"$HOSTNAME"_"$DATE"_initial.tgz --anchored $EXCLUDE_LIST *
echo "Initial backup finished on $HOSTNAME at `date \"+%F %T\"`"
echo "Initial backup location: $BACKUP_HOME/$(basename $NC_HOME)_"$HOSTNAME"_"$DATE"_initial.tgz"
在脚本创建的归档文件之后,我看到其他文件仍在排除目录中:
/backup/logs:
admin-access.log
admin-access.log00001
admin-access.log00002
admin-access.log00003
admin-access.log00004
admin-access.log00005
/backup/installer_logs:
AITimeListener.log
installer.log
/backup/servers/clust1/logs/:
clust1.out
clust1.out00001
clust1.out00002
clust1.out00003
clust1.out00004
请帮助我如何编写代码,也请不要建议我使用-X选项。 我真的需要用--exclude来做。
答案 0 :(得分:0)
尝试将EXCLUDE_LIST更改为:
EXCLUDE_LIST=(
--exclude 'logs/*'
--exclude 'servers/*/logs/*'
--exclude 'installer_logs/*'
)
然后像这样展开:
tar -czhf ... --anchored "${EXCLUDE_LIST[@]}" *
你现在正在做什么不起作用的原因是因为EXCLUDE_LIST正在被解释为--exclude "logs/*" ...
。双引号不会被删除并仍然是参数的一部分,因此模式与任何内容都不匹配,因为您没有任何名称中带有双引号的文件或目录。