最佳答案
我试图使用一个数组来存储使用 find
命令的文件名列表。
由于某些原因,数组无法在学校使用的 bash 中工作,但我的程序可以在我自己的笔记本电脑上工作。
所以我想知道还有没有别的办法,这就是我的办法:
array = (`find . -name "*.txt"`) #this will store all the .txt files into the array
然后,我可以访问数组项,并使用 cat 命令复制所有文件。
还有其他不使用数组的方法吗?