没有 tmp1 和 tmp2 怎么办?(资料文件好)
cat information_file1 | sed -e 's/\,/\ /g' >> tmp1
echo Messi >> tmp2
cat tmp1 | grep Ronaldo | cut -d"=" -f2- >> tmp2
rm tmp1
cat information_file2 | fin_func tmp2
rm tmp2
fin_func 供您参考。(它不是真正的 func,我不想更改它只是因为您会看到我如何使用 tmp2 和 info_file2)
while read -a line; do
if [[ "`grep $line $1`" != "" ]]; then
echo 1
fi
done