In Mathematica, it is possible to reuse the output of the previous command by using %.
Is something similar possible for bash (or some other shell)?
For example, I run a make which gives warnings, but I want to find all warnings. So, I type
make | grep "warning"
but I'm not able to see the output of the make then.
I would like to type something like this instead:
make
% | grep "warning"