Run pipes interactively, without EVER hitting enter
ii , standing for "interactive interactive", is a new way of writing multiple piped commands and get instant visual feedback.
For example, if I want to write the bash oneliner :
ps -axf | grep cpu | grep -v cpuhp | sed 's/--.//g' | grep -o '/.' | grep -v erlang | uniq
It is cool to have a way to see automatically what is happening.
Here's a demo :