Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何在 Windows 上执行此操作,但我想创建一个位于 linux 机器上的目录中的文件列表,可以是 txt 或 csv 文件。或者有没有办法保存命令的输出而不是在屏幕上显示它?任何帮助表示赞赏。
ls列出文件夹中的文件,检查man ls选项。要保存 shell 命令的输出,请使用重定向,例如:
ls
man ls
ls > list.txt
或者
ls -l > list.txt
等等