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.
我正在尝试使用磁盘使用工具检查我的主目录文件夹有多大,但它也会打印出以点开头的文件夹和文件。
我似乎无法过滤掉它们。
du -h --exclude="?" du -h | grep -v "?" du -h | grep -ve "?" du -h | sed "?"
提前致谢。
编辑> 谢谢SiegeX的回答。
du -h --max-depth=1 | grep -v "./\\."
由于点匹配任何字符,我们必须在它前面加上双反斜杠,因为它也是一个特殊字符。
如果在du没有指定路径(当前目录)的情况下运行,请使用:
du
du -h --exclude "./.*"