What does <<<
mean in this command line?
bc <<< \"1 + 1\"
It doesn\'t seem to a combination of <
That is the here string operator. See here string operator document.
It introduces a here string, documented near the end of the section on input and output redirections. A here string is just a one-word here document:
bc <<< "1 + 1"
is equivalent to
bc <<EOF
1 + 1
EOF
man ksh
You can perform a search in a manual by typing / (slash) follow by what you search, like with less program.