This is a piped command for generating 10 characters password at random:
cat /dev/urandom | base64 | head -c 10
My question is cat /dev/urandom | base64 is an infinite output stream which will not stop by itself. But why appending head -c 10 makes the whole pipe terminated? I assume cat, base64 and head are 3 separated processes, how can head terminate the cat?