我编写了一个脚本来删除远程服务器上的文件。有多个目录,脚本移动到每个目录,找到比定义时间早的文件并删除它。但是如果脚本找到要删除的文件,它会删除它们并退出while循环。
输入:目录列表文件,其中包含目录列表和文件名。
以下是代码。
MsgLog " Step 1: Start checking directories for old logs"
cat $DIRECTORY_LIST | while read DIR;
do
read LOG_FILE
read LOG_RET_PERIOD
MsgLog "Inputs"
MsgLog "Server=$SERVER User=$USER Log_path=$DIR Log_file=$LOG_FILE Log_Retention_Period=$LOG_RET_PERIOD"
ssh -q -n -o 'BatchMode yes' $USER@$SERVER "cd $DIR;find $LOG_FILE* -mtime +$LOG_RET_PERIOD" >>$FIND_log
ERROR_MSG=$?
if [ $ERROR_MSG -ne 0 ]
then
MsgLog "ERROR $ERROR_MSG: Could not connect."
exit 1
fi
if [ -s "$FIND_log" ]
then
MsgLog " Files to delete:"
cat $FIND_log
ssh $USER@$SERVER "cd $DIR;find $LOG_FILE* -mtime +$LOG_RET_PERIOD -exec rm {} \;"
ERROR_MSG=$?
if [ $ERROR_MSG -ne 0 ]
then
MsgLog "ERROR $ERROR_MSG: Step 1, Could not delete old Log Files."
exit 1
fi
else
MsgLog " No log files to delete."
fi
rm $FIND_log
MsgLog "Move to next directory"
done
MsgLog "No more directories"
if [ "$EXIT_CODE" = 0 ]
then
MsgLog "$BNAME successfully completed"
else
MsgLog "$BNAME completed with errors"
fi
exit $EXIT_CODE
我希望它循环到所有目录。但它在找到并删除任何目录中的文件时退出循环。
答案 0 :(得分:0)
问题在于read
使用cat $DIRECTORY_LIST | while read DIR
。
在read
的某些实现上,特别是在RedHat派生的发行版上,read
是一个shell脚本,当shell更改时,它的输出会被重置。
由于每次ssh
登录到另一台主机时shell都会更改,因此循环会在第一次ssh
调用后停止。
将顶部循环更改为不使用read
的内容,例如:
for DIR in `cat $DIRECTORY_LIST`; do
<..>
done