logoalt Hacker News

Shell.how: Explain Shell Commands

116 pointsby thunderbong08/24/202438 commentsview on HN

Comments

yla9208/25/2024

There's also https://explainshell.com!

simonmysun08/25/2024

Will you consider switching the backend provider?

https://fig.io/blog/post/fig-is-sunsetting

show 1 reply
0xbadcafebee08/25/2024

The parser needs work; it thinks "${DEBUG:-0}" is not valid shell.

(explainshell.com is only slightly better; it doesn't explain the parameter expansion, which would be very useful as there's 30 different kinds of expansion. see https://www.gnu.org/software/bash/manual/bash.html#Shell-Exp...)

bmarswalker08/25/2024

I tried

    tar xvzf 1.zip
and got

    xvzf: is neither a valid subcommand, option, or argument.
show 4 replies
pensatoio08/25/2024

Wow, fig looks so cool. Shame it's shutting down. I don't see a clear explanation for how Amazon Q replaces it.

show 3 replies
mmphosis08/25/2024

Local first, from the command line using llamafile version 0.2.1

    Explain the shell command: git commit -m "hello world"
The `git commit` command is used to create a new commit in Git. A Git commit is a snapshot of the project at a particular point in time, with the ability to track changes made and revert to previous versions if needed.

In this specific command: - `git commit` is the shell command itself. - `-m` option is used to specify a message for the commit. This message provides context and information about the changes that were made in the commit. - `"hello world"` is the argument provided for the `-m` option, it's a simple string that serves as the commit message.

So, this command will create a new Git commit with the message "hello world".

zazaulola08/25/2024

Doesn't sound very useful to me. I tried entering something like this:

     sed 's/y/i/g' <<<'xxyyzz'
I was not satisfied with the explanation.
show 1 reply
kidintech08/25/2024

I am honestly asking and not trying to be a smartass:

What are the advantages of LLM summaries over man pages/google searches/stackoverflow threads?

I could maybe empathize if an engineer only had 30 seconds to understand a code snippet or a large shell command, but how often is that really the case? Is the time gained worth the risk of hallucination or incompleteness?

Or perhaps engineers are not the target audience?

show 2 replies
Mogzol08/25/2024

Pretty cool, though seems very similar to explainshell.com.

Also noticed that it breaks with single quotes, for example, this works:

    curl -H "Some-Header: value" http://example.com
But this causes it to error:

    curl -H 'Some-Header: value' http://example.com
ptrik08/25/2024

How’s this different from explainshell?

show 1 reply
m348e91208/25/2024

Cool site, although I found my own bug too

https://files.catbox.moe/j08300.png

Zetaphor08/25/2024

If you check the git commit example on the homepage, it for some reason describes the git command as "The stupid content tracker"

show 1 reply
irthomasthomas08/25/2024

Alternatively pipx install llm

explain() { # Use llm to generate a simple explanation for a command. # Example: explain 'fortune | cowsay' local system_prompt="Be brief. Mention only serious errors, if any, otherwise just explain the code." local query="$1" llm "$query" --system "$system_prompt" "${@:2}" }

explain 'fortune | cowsay'

This command combines two fun Unix/Linux utilities:

1. `fortune`: This program generates a random quote or short message, often humorous or thought-provoking.

2. `cowsay`: This is a program that generates ASCII art of a cow (or other character) with a speech bubble containing a message.

The pipe (`|`) between them takes the output of `fortune` and feeds it as input to `cowsay`.

So when you run this command, you'll see an ASCII art cow "saying" a random fortune message. It's a playful way to display random quotes or messages in the terminal.

Example output might look like:

_________________________________________ / Q: How many Marxists does it take to \ | screw in a light bulb? A: None: The | \ light bulb contains the seeds of its / \ own revolution. / --------------------------------------- \ ^__^ \ (oo)\_______ (__)\ )\/\ ||----w | || ||

schindlabua08/25/2024

`git blame -C -C -C` does not give a proper description

mmsc08/25/2024

One of these for awk scripts would be amazing.

esafak08/24/2024

fig is dead: https://fig.io/