I have installed the fish shell, and I'm very happy with it ... but I cannot run the following command:
make && make install
This works nicely in bash... How do I run it in fish shell?
I have installed the fish shell, and I'm very happy with it ... but I cannot run the following command:
make && make install
This works nicely in bash... How do I run it in fish shell?
From the documentation:
The and builtin is used to execute a command if the current exit status (as set by the last previous command) is 0.
COMMAND1; and COMMAND2
So you'd call:
make; and make install