Hacker News new | ask | show | jobs
by discreditable 3338 days ago
Instead use:

    command1; and command2
More info: https://fishshell.com/docs/current/tutorial.html#tut_combine...
1 comments

It's not the same thing.

; executes the following command even if the first one fails. && only if the previous command returns 0.

Not when used with and. And and or verify if the previous command executed. It says as much in the documentation linked by OP.

So you can do things like: runthiscommand; and echo "Success"; or echo "Failed"

> It's not the same thing.

Oh but it is! Read the link!