所以我正在制作的脚本的目的是比较两个文件,同时读取其中包含文件路径名的列表......
while read compareFile <&3; do
if [[ ! $server =~ [^[:space:]] ]] ; then #empty line exception
continue
fi
echo "Comparing file - $compareFile"
if diff "$compareFile" _(other file from loop?_) >/dev/null ; then
echo Same
else
echo Different
fi
done 3</infanass/dev/admin/filestoCompare.txt
我需要能够通过两个 while read 循环同时比较来自两个不同列表的文件......这甚至可能吗?