|
disksize
recursively scan given path and count it's size (return list of big files etc)
Introductiondisksize is easy way to find all files or directories what are stealing our hard disk space. After complete read of given path, display list of all files and directories which are bigger then given threshold. Usedisksize [-n|--no-human] [-o|--output -] [-t|--threshold 1M] [-s|--show-omitted] [-x|--exclude *str*] [-d|--debug] [-l|--follow-links] [-r|--exclude-regexp ^regexp$] path
If specified, filesize will be shown in bytes. Defauls to 'human' size, like 1kb, 100Mb etc Filename to store results. Files with size below this threshold will not be displayed (ex. 10M, 5k). Defaults to 1M. If specified, files with size lower then threshold, will be listed on the end of output. Doesn't count paths matching string. Glob characters (*, ?) are recognized. Enable debug messages. Doesn't work yet. Works like -x, but match with RegExps |
Sign in to add a comment