#!/bin/bash find *.txt | wc -l;
这给出了txt文件的数量.在我的程序中如何将此输出放入变量中说“count”
#!/bin/bash count=$(find *.txt | wc -l)