I found this in one of the bash scripts for capturing metrics running on CentOS.
read -rd '' count <<< "$count"
I know read reads the content of file descriptor into buffer, but I cannot find the documentation for the command line switches -r, -d.
Additionally, What does triple left arrow <<< do?