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?

  • @glad_cat@lemmy.sdf.org
    link
    fedilink
    7
    edit-2
    7 months ago

    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.

    • @Tubbles@lemmy.world
      link
      fedilink
      47 months ago

      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
    link
    fedilink
    4
    edit-2
    7 months ago

    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