Board logo

标题: [技术讨论] Shell脚本如何查找文件中匹配的字符串? [打印本页]

作者: jx1214    时间: 2016-5-19 10:36     标题: Shell脚本如何查找文件中匹配的字符串?

在hello.txt中,要查找AAAAa=y  ,我需要判断当前字符串是否等于y ?
请问,在shell脚本中如何判断该条件???
作者: jx1214    时间: 2016-5-19 10:37

忘记说了。需要在shell脚本里实现 回复 1# jx1214
作者: gawk    时间: 2016-5-19 10:53

  1. #!/bin/bash
  2. str=$(awk -F '=' '/AAAAa=/{print $2}' hello.txt)
  3. if [ "$str" == "y" ]; then
  4.     echo Yes
  5. else
  6.     echo No
  7. fi
复制代码





欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2