I found this code in a script at the end of a while loop
done <<< $filenames
In the script, $filenames
is a variable used to collect a list of files from a database. The loop processes each sub-string in the $filenames
list.
The question I have is what does the <<<
do?