shellwhile双循环对比查找共有字段 [操作系统入门]
#!/bin/bash
#查找两个文件中的共有字段
while read line
do
while read line2
do
if [[ $line -eq $line2 ]]
then
echo $line2
fi
done < aaa.txt
done < bbb.txt
shell while 双循环对比查找共有字段
以上是 shellwhile双循环对比查找共有字段 [操作系统入门] 的全部内容, 来源链接: utcz.com/z/518503.html