Suggest update of two commands - who to write to?

I think it's about time the df and du commands (executables?) were updated to display gigabyte units without one having to do their own calculations from the -m option (display in megabytes). This is one of those "little nothing" annoyances that, at the same time, would positively show new Linux/Unix users that, from pillar to post, stem to stern, sub-basement to penthouse and at all points in-between, open-source solutions keep up to date with the times.

So to whom does one make such a suggestion?

BZT

You can (usually) find out who's writing a particular program by checking who wrote the package. On RPM based systems use

rpm -qif $( which du )

, on Debian-based systems

dpkg -S $( which du )

That should get you the coreutils package, which is originally hosted on http://www.gnu.org/software/coreutils/

However, try both commands with the '-h' switch (for "human"), and you'll have sizes in GB too.

Yes, and there's a reason they put it in a switch. Most commands available in shell are designed to output data extremely consistently so other programs can use it predictably. If you know it'll always report 1K blocks, that's easy to build a shell script around -- but trying to parse mixed units like 115K, 2.2G and 441M would be a nightmare.

Lastly, always, always, always read the man pages before complaining about a lack of feature. You'd have found the -h flags in both commands. You'd also have found email addresses to report bugs to.

Thanks. Now I know. BZT