Regardless of what the app does and whether the thing that does is particularly useful, powerful or important for what you need to do (or even well implemented), what is a command-line interface that you had a particularly good experience both learning and working with?

In other words, I’m thinking about command line interface design patterns that tend to correlate with good user experience.

“Good user experience” being vague, what I mean is, including (but not limited to)

  • discoverability–learning what features are available),
  • usability–those features actually being useful,
  • and expressiveness–being able to do more with less words without losing clarity,

but if there’s a CLI that has none of those but you still like it, I’d be happy to hear about it.

Edit: Trying to stress more that this post is not about the functionality behind the tool. Looks like most of first responders missed the nuance: whether app x is better than app y because it does x1 ad x2 differently or better does not matter; I’m purely interested in how the command line interface is designed (short/long flags, sub-commands, verbs, nouns, output behaviors)…

  • brianpeiris@lemmy.ca
    link
    fedilink
    English
    arrow-up
    4
    ·
    20 hours ago

    I like the trend of refining existing tools. You take tried-and-true commands and shave off the rough edges and quirks. I use ripgrep instead of grep, fd instead of find, scm_breeze on top of git, dust instead of du, duf instead of df, z over cd, and xh instead of curl

  • Ephera@lemmy.ml
    link
    fedilink
    English
    arrow-up
    8
    ·
    2 days ago

    I always thought openSUSE’s package manager zypper has quite a few neat ideas:

    • It offers two-letter shorthands for subcommands, so zypper installzypper in, updateup, removerm.
    • When it lists what packages it will install or remove, it will list them with the first letter highlighted in a different color, kind of like so: fish git texlive
      This makes it really easy to visually scan the package list, and since it’s sorted alphabetically, it also makes it easier to find a particular package you might be looking for.
      And while there’s separate lists for packages to be added vs. updated vs. removed, they also color those letters in green vs. yellow vs. red, so you can immediately see what’s what.
    • When it lists items (other than packages), it prints an ID number, too.
      So, zypper repos gives you a list of your repositories, numberered 1, 2, 3 etc., and then if you want to remove a repo, you can run zypper removerepo 3.
    • When you run a zypper search, it prints the results in a nicely formatted table.

    Documentation: https://doc.opensuse.org/documentation/tumbleweed/zypper/

  • jonathan@piefed.social
    link
    fedilink
    English
    arrow-up
    35
    ·
    2 days ago

    Not what you asked, but anything that uses a single hyphen for longopts can just fuck off. I’m talking to you Terraform.

    • netvor@lemmy.worldOP
      link
      fedilink
      arrow-up
      4
      ·
      2 days ago

      Did not want to respond but this is hilarious.

      To be fair, really old CLI’s, like from the time when X.org was the new stuff, this style used to be more common. That was before “GNU style” (using single dash for single-letter bundle-able options and double dash for long options) became prevalent.

      But yeah, if you see -foo then you know the program is old enough that regular colonoscopy is recommended, and the original author is probably retired or “passed away at the ripe age of …”.

  • CodenameDarlen@lemmy.world
    link
    fedilink
    arrow-up
    23
    ·
    edit-2
    2 days ago

    I like CLI tools that everything I need can be found in a short command --help call, if I don’t need to use man command it’s even better.

    I’ve used poor CLI tools for example adb you type this and you get almost a scientific article with more than 100 flags to use. No I don’t want to need to use grep.

    A good one would be pacman it separates clearly what it does instead of shoving it all in a single command.

    • unwarlikeExtortion@lemmy.ml
      link
      fedilink
      arrow-up
      2
      ·
      20 hours ago

      This is where a man page comes in but alas, but some (perhaps even most) of them are fucking horrible. The core incantation is either too dumbed-down or (more often) too long-winded.

      Some good ones I can praise are netcat, ghostscript and 7z. Special praise goes to the Library Funtions Manual entries like signal and exit.

      Bad ones ones in my book are vim (too short), ffmpeg (a simple reordering of sections would make it quite a bit better, like moving the less common flags lower down the page) and git starts of strong but ends up being way too detailed and unstructured.

      I could go listing examples for days, so I might as well stop now.

    • carmo55@lemmy.zip
      link
      fedilink
      arrow-up
      4
      ·
      2 days ago

      Pacman flags not being idempotent (-SS, yy, uu and such existing) is so unbelievably horrible that I can’t use arch just because of it.

        • carmo55@lemmy.zip
          link
          fedilink
          arrow-up
          2
          ·
          1 day ago

          The flag -y refreshes the package list (like apt update). For some reason, you use the flag -yy to force it to clear the whole package list and redownload everything.

          To allow package downgrades when upgrading you use -uu.

          These are very commonly suggested fixes to arch package management problems, for example when you leave your arch install to suit for too long, it will be impossible to update it because of dependency problems. So you google it and people are saying to run “pacman -SSyyuu” or other such commands.

          Those additional options should be their own flags, command line flags should be idempotent (it should flip a switch on, doing it multiple times shouldn’t change anything).

  • Obin@feddit.org
    link
    fedilink
    arrow-up
    19
    ·
    2 days ago

    I think git is the obvious choice, both in ergonomics and flexibility (custom commands). But maybe I’m just using it so much I don’t recognize the sharp edges as much anymore.

    • JayleneSlide@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      2 days ago

      But maybe I’m just using it so much I don’t recognize the sharp edges as much anymore.

      Nah. I used to think that GUI git clients were The Way. But they all fall short, especially when the ***slightest ***thing goes sideways. Once you get your head around the paradigm, the git CLI is how you get real shit done and quickly. If anything, the GUI clients are all sharp edges and half-measures; the only reason I pull out a GUI client is to get a visual on all the branches in progress/already merged.

      • Obin@feddit.org
        link
        fedilink
        arrow-up
        1
        ·
        2 days ago

        I’m a huge Emacs user and while I love some of the convenience features (editing the rebase-history, smerge-vc-next-conflict, etc.), but I rarely use magit, one of Emacs’ killer features, because I just still prefer the CLI over it. I usually know exactly what I want to do and menus, popups and hotkeys, no matter how good they are, just slow me down.

        • littleomid@feddit.org
          link
          fedilink
          English
          arrow-up
          1
          ·
          2 days ago

          How does pressing s to stage, cc to commit, pp to push slow you down in contrast to git add file, git commit -m etc?

      • Obin@feddit.org
        link
        fedilink
        arrow-up
        2
        arrow-down
        1
        ·
        edit-2
        2 days ago

        That article doesn’t actually criticize the structure of git’s CLI, just the way the application operates and the philosophy behind it. fossil’s CLI actually seems to take a lot of inspiration from git, except it’s way less complex, because fossil doesn’t “need” that complexity (i.e. can’t do it).

        From a cursory reading, I disagree with most philosophical points made. Many of the scenarios and user testimony are complete nothing-burgers. I haven’t tried it for any length of time, but I think I prefer a fast, optimized, flexible tool over an integrated everything-but-the-kitchen-sink opinionated kind of thing that forces you into doing things their way or the highway, no matter how good it actually is. But as OP said, this is about the CLI, not the applications.

          • Obin@feddit.org
            link
            fedilink
            arrow-up
            1
            arrow-down
            1
            ·
            edit-2
            2 days ago

            It smelled like an easily recognizable mentality from the start, and your last comment just confirms that for me. I’ve seen it elsewhere and I try to stay away from it where I can. But I wish you luck and joy using your chosen set of tools though. It’s great there are alternatives for everything in FOSS.

            • richieadler@lemmy.myserv.one
              link
              fedilink
              arrow-up
              1
              ·
              14 hours ago

              You smelled like a Git zealot, one of those who on occasion troll Fossil forums to spread the Gospel of Got and crying heresy. Blocking you now.

  • juipeltje@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    1 day ago

    Pure cli or also TUI? When it comes to TUI probably yazi is my most used tool right now, use it pretty much every day. For pure cli i would probably give my vote to sed. I use the crap out of it in a bunch of scripts. For example i switch my themes with it by replacing whatever import i had in the config to the desired theme, then reload the programs.

  • non_burglar@lemmy.world
    link
    fedilink
    arrow-up
    6
    ·
    2 days ago

    Honestly, incus.

    I know it’s not strictly a utility, but holy cow, Stephane Graber and his team have put the work into that product, such that anything you can do in the ui can be done in the CLI, and more.

    Tab completion entries for all the resource types (storage, instances, image repos, etc), help entries for everything, it brings a tear to the eye.

    I once thought it was cool to have standardised man entries, but even better is context-sensitive --help entries that work well. Almost all the discovery I’ve made using incus, I’ve made using the commands themselves.

    It’s a real testament to how putting in the documentation work might be tedious, but it is a boon to both users and devs.

  • Bricked@feddit.org
    link
    fedilink
    arrow-up
    8
    arrow-down
    1
    ·
    edit-2
    2 days ago

    There are many modern alternatives to common Unix commands, often written in rust, or provided in Nushell, that showcase that. Here are some common themes I like:

    Good defaults: You shouldn’t have to memorize tar -xzvf just to extract a tar file; The thing you’re most likely to want to do should be the default. But other use cases should still be achievable through the use of flags. Make simple thing easy and difficult things possible.

    Subcommands: It helps separate and discover the different functions of a CLI. Paired with a help subcommand, you can quickly look up information for the subcommand you’re actually interested in.

    Domain specific languages: Many problems already have a solution in the form of a DSL, such as Regex or SQL. My favourite example for this is httpie, which lets you specify the type, body and parameters of an HTTP request without touching any flags.

    I also much prefer long flags over short ones, because they are self-documenting.

    • Liketearsinrain@lemmy.ml
      link
      fedilink
      arrow-up
      3
      ·
      2 days ago

      Does no one read man pages anymore? This is not a personal attack but I am baffled people don’t set up bash completion correctly and then can’t “discover flags” (or just read the manual).

      I would not want tar that automatically “does what it thinks I want” useful… am l out of touch or the kids being wrong

    • Archr@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      2 days ago

      Anything to replace firewall-cmd? (I know about ufw but it just feels too simple for my use case).

      firewall-cmd commands are all fucked up and it feels like they use different verbs for very similar actions. Plus - - help is a few miles long which is not helpful. I just wish that it would have subcommands. Something like firewall-cmd zone public info

    • Black616Angel@discuss.tchncs.de
      link
      fedilink
      arrow-up
      1
      ·
      2 days ago

      I actually like tar. Yes, it could have a default, but its also from another time. And remembering Xtract Zip File is not that hard. (v is for verbose for those wondering)

      • hobata@lemmy.ml
        link
        fedilink
        arrow-up
        3
        ·
        2 days ago
        extract () {
          if [ $# -ne 1 ]
          then
            echo "Error: No file specified."
            return 1
          fi
            if [ -f "$1" ] ; then
                case "$1" in
                    *.tar.bz2) tar xvjf "$1"   ;;
                    *.tar.gz)  tar xvzf "$1"   ;;
                    *.tar.xz)  tar xvf "$1"    ;;
                    *.tar.zst) tar axvf "$1"   ;;
                    *.xz)      xz -kd "$1"     ;;
                    *.bz2)     bunzip2 "$1"    ;;
                    *.gz)      gunzip "$1"     ;;
                    *.tar)     tar xvf "$1"    ;;
                    *.tbz2)    tar xvjf "$1"   ;;
                    *.tgz)     tar xvzf "$1"   ;;
                    *.lzma)    unlzma "$1"     ;;
                    *.rar)     unrar x "$1"    ;;
                    *.zip)     unzip "$1"      ;;
                    *.Z)       uncompress "$1" ;;
                    *.7z)      7z x "$1"       ;;
                    *.exe)     cabextract "$1" ;;
                    *.deb)     ar x "$1"       ;;
                    *.jar)     jar xf "$1"     ;;
                    *)         echo "'$1' cannot be extracted via extract" ;;
                esac
            else
                echo "'$1' is not a valid file"
            fi
        }
        
        • Coriza@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          2 days ago

          You don’t even need to specify the decompression algorithm anymore, I don’t even know if it was mandatory at some point but since I was introduced to Linux like 20 years ago tar would already extrapolate the decompression from the filename extension. Now for the compression I think you do need to include the algorithm, it would be nice if it would default to the extension on the supplied filename also.

  • harsh3466@lemmy.ml
    link
    fedilink
    arrow-up
    3
    ·
    2 days ago

    find and rename/perl-rename/prename (depending on your distro), are two of my favorite cli tools. I generally find both well designed and easy to use. For me, they are indispensable.

    • Coriza@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      2 days ago

      I think find UI is so bad every time I use it I think about hacking a script just to make it simpler for my use case. At the same time I am very reluctant to use one of this new versions of standard commands trying to reinvent the wheel.

      Some things I don’t link about find:

      1. How the directory needs to be the first argument. I get the reasoning but it is such a pain, specially if you are using it with the same query repeatedly in different paths.

      2. The parenthesis to set order of matches, you are doing it in the shell so you have to escape them which is never fun.

      3. The fact that -name does not match partial names and there is not a version that do so you have to keep doing stuff like -name "*foo*" and of course you have to escape that shit or risk you shell expanding it. Having the GLOB version is nice but there could have a more ergonomic way to do this type, which I assume is a very common use case.

      4. Actually, doing more complex logical matches is always a pain and it would be nice to have a easier way to do some common operations.

      5. The fact that when you do some complex match then the -print is not automatic anymore or the the behaviour is kinda weird. And is a pain to add it in all logical branches or do it in a way that you do not repeat a lot.

      Anyway, sorry for the rant.

  • JakoJakoJako13@piefed.social
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 days ago

    Ncmpcpp. I’ve been using it for so long that using other cli music players is almost a no go. Learning a new muscle memory wouldn’t be worth it. Album art would be nice but I’m listening to music and staring at the album art for hours. The metadata editor is really nice. It’s old reliable.

    • ThunderComplex@lemmy.today
      link
      fedilink
      English
      arrow-up
      2
      ·
      19 hours ago

      Just recently switched to Linux and realized I had no htop so I went for btop instead (because I’m trying out loads of new stuff). I’m very happy with it and I love the doom aesthetic of the esc-menu.