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.
通过使用 man 命令,我想列出我已经创建的文件的名称以及文件大小、修改日期等额外信息。
我知道我必须使用 man 命令可能是这样的:
man ls | documents
但这似乎行不通。如果有人知道如何做到这一点,那就太好了?任何帮助将非常感激。
您man用来阅读手册的内容,而不是列出文件。
man
用于ls列出您的文件。
ls
用于ls -l列出带有额外信息的文件。
ls -l
用于ls -la列出所有包含额外信息的文件(包括隐藏文件)。
ls -la