Why is the human option (-h) not default?
from AnonymousLemming@feddit.de to openbsd@lemmy.ml on 23 Sep 2023 22:59
https://feddit.de/post/3741538

I frequently find myself needing to rerun commands with the -h flag, and I was just wondering why it is not the default behavior of programs to show sizes in human-readable terms?

#openbsd

threaded - newest

glad_cat@lemmy.sdf.org on 23 Sep 2023 23:10 next collapse

I guess because most of the time the data is consumed by another script. I don’t know how OpenBSD behaves, but I would be pretty angry if I had to put such flags (like “-not-human”) everywhere in my code, docker scripts, and pipelines.

AnonymousLemming@feddit.de on 23 Sep 2023 23:22 next collapse

Thanks for the explanation.

Tubbles@lemmy.world on 23 Sep 2023 23:32 collapse

I have the totally opposite opinion, since script writing is where I have a proper text editor with templates and snippets and other helpful tools. Its interactive commands at the terminal that I want to behave as much “human” as possible so I don’t have to type so much

RankWeis@sh.itjust.works on 23 Sep 2023 23:12 collapse

I think it’s two reasons - first is that human readable formats are less specific, so three files that are “3gb” in size look the same, so it may be hiding information that it knows about

The second is that commands are very often used as parts of larger scripts, where human readability may not matter as much, or may not be applicable until the very last command when the output is actually shown.

Between these, and the fact that most commands try not to predict what your use case is, I think that having a -h option is going to be the norm going forward as well rather than having it as the default

AnonymousLemming@feddit.de on 23 Sep 2023 23:21 collapse

Makes sense for interoperability with other scripts. Thank you.