标签:字段 while shell bbb bin done bsp one 循环
#!/bin/bash
#查找两个文件中的共有字段
while read line
do
while read line2
do
if [[ $line -eq $line2 ]]
then
echo $line2
fi
done < aaa.txt
done < bbb.txt
标签:字段 while shell bbb bin done bsp one 循环
原文地址:https://www.cnblogs.com/z977690557/p/13346550.html