I was reading some commands on explainshell.com and find an interesting command:
:(){ :|:& };:
Currently I'm under OSX
and the only reference to it that I could find was on builtin
man page (man builtin
) but that didn't help because it only says whether it's an external, cshell or sh command.
Command External csh(1) sh(1)
! No No Yes
% No Yes No
. No No Yes
: No Yes Yes
So, what does executing :
do?
On terminal I've got no output on it:
$ :
$
:
isn't being used as a built-in. – John Oct 26 '16 at 19:22