2020年7月20日
摘要: #!/bin/bash #查找两个文件中的共有字段while read linedo while read line2 do if [[ $line -eq $line2 ]] then echo $line2 fi done < aaa.txtdone < bbb.txt 阅读全文
posted @ 2020-07-20 18:17 如尘如水 阅读(403) 评论(0) 推荐(0)