脚本中的子 shell 无法正确打印

脚本中的子 shell 无法正确打印

为什么我的 shell 和子 shell 只在 for 循环中打印第一个小时?它应该循环一天的所有 24 小时,但只能正确打印第一个小时。


{
for D in $(seq -f "%02g" 1 9); do

File=($(find -name "PaloAlto_traffic_$M-$D-$Y.zip"))
unzip -j $File
Filetmp=($(find -name "traffic_$M-$D-$Y.total"))

D=$(echo $D | sed -e 's/^0*//')

for i in $(seq -f "%02g" 0 23); do

echo $i 

    grep -F -s "$month  $D $i:" $Filetmp > TempOutput1.txt

    countAllow=($(grep -F -c 'allow' TempOutput1.txt))
    countDeny=($(grep -F -c 'deny' TempOutput1.txt))
    #Add new 'variable=($(grep)) statement here'

    echo -e "$M/0$D/$Y $i:00,$countAllow,$countDeny" >> AD-Results-$month-$Y
    echo "$((10#$i+1))/24       hours completed for $month $D" 
    rm -f $Filetmp
done
done
} & #Subshell 2A
{ 
for D in $(seq -f "%02g" 10 18); do

File=($(find -name "PaloAlto_traffic_$M-$D-$Y.zip"))
unzip -j $File
Filetmp=($(find -name "traffic_$M-$D-$Y.total"))

for i in $(seq -f "%02g" 0 23); do

    grep -F -s "$month $D $i:" $Filetmp > TempOutput2.txt

    countAllow=($(grep -F -c 'allow' TempOutput2.txt))
    countDeny=($(grep -F -c 'deny' TempOutput2.txt))
    #Add new 'variable=($(grep)) statement here'

    echo -e "$M/$D/$Y $i:00,$countAllow,$countDeny" >> AD-Results-$month-$Y
    echo "$((10#$i+1))/24       hours completed for $month $D" 
    rm -f $Filetmp
done
done
}
wait

示例输出数据:(日期时间,允许,拒绝)

05/10/2014 00:00,3242,6758
05/10/2014 01:00,0,0 #This should be the same as above line but outputs 0,0

答案1

$Filetmp您可能过早删除了名为的文件。该rm命令位于内循环内:

        rm -f $Filetmp
    done
done

因此,在内循环第一次迭代后(即当 $i = 0 时),文件将被删除。后续迭代 ($i > 0) 将找不到该文件。由于您使用选项 调用 grep,因此不会报告任何错误-s,但结果计数显然为零。

rm命令应该位于内循环之外:

    done
    rm -f $Filetmp
done

相关内容