标签: bash shell command-line
I've look for documentation about this sign <<< but i can't find any good explanation.
Here is an example:
IFS=';' read -ra ADDR <<< "allo;hi;salut"
What does this line do ? and specificaly what does <<< do in this line?
Thanks
答案 0 :(得分:3)
It's used to create a Here String