GUIs (piefed.kobel.fyi)
 
you are viewing a single comment's thread
view the rest of the comments
[–] 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