1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
.TH PYDF 1
.SH PYDF
pydf \- report colourised filesystem disk space usage
.SH SYNOPSIS
.B pydf
.I "[options]"
.SH "DESCRIPTION"
.B pydf
is a python script that displays the amount of disk space available
on the mounted filesystems, using different colours for different
types of filesystems. Output format is completely customizable.
.SH OPTIONS
.TP
.B \-\-help
Show summary of options.
.TP
.B \-\-version
Show version of program.
.TP
.B \-a, \-\-all
include filesystems having 0 blocks
.TP
.B \-h, \-\-human-readable
print sizes in human readable format (e.g., 133K 2341M 2448G)
.TP
.B \-H, \-\-si
likewise, but use powers of 1000 not 1024
.TP
.B \-\-block-size=SIZE
use SIZE-byte blocks
.TP
.B \-k, \-\-kilobytes
like --block-size=1024
.TP
.B \-l, \-\-local
limit listing to local filesystems
.TP
.B \-m, \-\-megabytes
like --block-size=1048576
.TP
.B --blocks
use filesystem native block size
.TP
.B --bw
do not use colours
.TP
.B --mounts=FILE
file to get mount information from.
On normal linux system, only /etc/mtab or /proc/mounts make sense.
Use /proc/mounts when /etc/mtab is corrupted or inaccessible
(the output looks a bit weird in this case though)
.SH "SEE ALSO"
.BR df "(1)
.SH AUTHOR
Radovan Garabik (garabik@fmph.uniba.sk)
|