将查找字数结果放入变量中

时间:2012-04-13 11:02:35

标签: bash shell variables find word-count

#!/bin/bash
find *.txt | wc -l;

这给出了txt文件的数量。在我的程序中,如何将此输出放入变量“count”

1 个答案:

答案 0 :(得分:10)

#!/bin/bash
count=$(find *.txt | wc -l)