I get the following code to get a fingerprint from private key of OpenSSH.
$ key=`ssh-keygen -yf ~/.ssh/id_rsa`; ssh-keygen -lf /dev/stdin <<<$key
However, I do not know <<< $key syntax. What behavior is this? Is there a web site that explains this syntax?