I know that bash has the <, >, and 2> operators to redirect stdin, stdout, and stderr to a file, and that using >> for both out and err appends instead of flushing any available files first. but I came across this line
IFS=',' read -a myarray <<< "$mystring"
which seems to read some data from a variable. What exactly is this operator? , and is there any << operator?