This this below command in bash. Linux machine will be hanged.
:(){ :|: & };:
:()
– define a function called :
{:|: &}
means run the function :
and send its output to the :
function again and run that in the background.
The ;
is a command separator
:
runs the function the first time.