The grml zsh configuration contains a zsh abbreviation for a command I have never seen before:
abk=(
# key # value (#d additional doc string)
#A# start
# <snipped>
'G' '|& grep --color=auto '
I am wondering why the abbreviation G expands to |& and not |. So the question is:
What is the difference between |& and |?
man zshallby entering/\|&. The pipe needs to be escaped. – Daniel Beck♦ Oct 19 '12 at 12:04