当前位置: 技术问答>linux和unix
shell script如何获取返回的参数
来源: 互联网 发布时间:2016-12-13
本文导语: 如题,比如说我要用 grep -c 'login.action' localhost_111.txt ,那么我如何在shell中获取得到的个数呢?小弟刚学linux,求高手解答。 | 或者grep -c 'login.action' localhost_111.txt | wc -l | ...
如题,比如说我要用 grep -c 'login.action' localhost_111.txt ,那么我如何在shell中获取得到的个数呢?小弟刚学linux,求高手解答。
|
或者grep -c 'login.action' localhost_111.txt | wc -l
|
n=`grep -c 'login.action' localhost_111.txt`