# 在Shell中如何接收遍历find命令返回的结果
res=$(find /root/zzw/sf-sys-files/test/ -name test_*.sh)
for r in $res
do
echo "===$r"
done;
# 在Shell中如何接收遍历find命令返回的结果
res=$(find /root/zzw/sf-sys-files/test/ -name test_*.sh)
for r in $res
do
echo "===$r"
done;