Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图有一个变量 $totalLines 将总行数存储在文件中(作为输入 $1)。
我正在尝试做这样的事情:
totalLines= grep -c *.* $1
但 Unix 不喜欢这样。
我尝试将它括在括号、方括号和 () 中,但这也不起作用。这必须非常简单,但我正在网上寻找答案,但没有找到明确说明它的页面或论坛。
很抱歉用这么简单的方法麻烦你们。
有两种方法可以实现:
totalLines=$(grep -c *.* $1)
或者
totalLines=`grep -c *.* $1`
喜欢: totalLines=$(grep -c *.* $1)