怎么在用shell脚本读取一个文件中指定的内容

2024-11-14 09:30:20
推荐回答(1个)
回答(1):

cat yourfile|grep "xxx"

脚本里面就可以:
a=`cat yourfile|grep "xxx"`
那么echo $a就知道了