在Linux中,du
命令用于统计目录或文件的磁盘使用情况
du -a /path/to/directory --exclude='file_pattern'
或者
du -ah /path/to/directory | grep -v 'file_pattern'
这里的/path/to/directory
是你要统计的目录路径,file_pattern
是你想要排除的文件或目录的模式。例如,如果你想要排除名为temp
的所有文件,你可以使用以下命令:
du -a /home/user/documents --exclude='temp*'
这将显示除temp
系列文件之外的所有文件和目录的磁盘使用情况。