标签: bash shell variables find word-count
#!/bin/bash find *.txt | wc -l;
这给出了txt文件的数量。在我的程序中,如何将此输出放入变量“count”
答案 0 :(得分:10)
#!/bin/bash count=$(find *.txt | wc -l)