jx1214 当前离线
列兵
gawk 当前离线
少将
#!/bin/bash str=$(awk -F '=' '/AAAAa=/{print $2}' hello.txt) if [ "$str" == "y" ]; then echo Yes else echo No fi复制代码
TOP