检索 txt 文件中的文件名

检索 txt 文件中的文件名

如何将文件名检索到 txt 文件中?

答案1

您可以执行

ls -1 >filename

这将使用给定的文件名重定向文件中的输出。

对于文件夹的内容:

ls -1 foldername >filename

相关内容