awk精确搜索和模糊搜索 cat abc.txt abc adc a15 deadw awk '/ab/' abc.txt abc awk '$0 ~ /a/' abc.txt abc adc a15 deadw awk '$0 == "abc"' abc.txt abc