GUIs (piefed.kobel.fyi)
 
you are viewing a single comment's thread
view the rest of the comments
[–] 146 points 6 months ago (6 children)

The cli has one other benefit which I think is rarely recognised: it's pretty easy to tell someone you need to run "xyz -a -b -c" (bringing the safety risk with it to be fair), but it gets a lot harder to be like "so in the top left there is a cog button that opens a panel on the right where you're looking for the 2nd tab and there'll be a checkbox".

The things I appreciate even more than a good gui are programs with a good gui and a cli.

  • source
  • parent
  • hideshow 12 child comments
  • [–] 39 points 6 months ago (1 child)

    A well documented CLI is easy to generate a GUI from.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 5 points 6 months ago (3 children)
  • [–] 16 points 6 months ago (4 children)

    It is very easy to tell someone type this and shut up. I've never seen an explanation of why -a -b and -c are necessary or what they do. Although I recognise that a lot of people just want magic, and running "xyz -a -b -c" is the next best thing.

    I would love to see what cli commands the gui uses, they would be much easier and faster to learn.

  • source
  • parent
  • hideshow 8 child comments
  • [–] 4 points 6 months ago (2 children)

    man xyz | grep -E "^ *\-(a|b|c)"

  • source
  • parent
  • hideshow 4 child comments
  • [–] 3 points 6 months ago (1 child)

    As the other comment says, use TLDR. it doesn't tell you everything, but it does usually explain the most common uses. If you need something more advanced than you need to do more research anyway.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 4 points 6 months ago

    While it is an improvement, it's aimed at people that already knows the commands.

    For example:

    • Extract a (compressed) archive file into the current directory verbosely:
      tar xvf path/to/source.tar[.gz|.bz2|.xz]

    What is that [.gz|.bz2|.xz] at the end? to someone that knows the tool it's too obvious to even think about, to anyone else, it's just there to mess with you because there's zero reference to it and some examples include it and others don't.

  • source
  • parent