In bash, what does <<< is used for?

时间:2016-04-25 09:15:10

标签: 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

1 个答案:

答案 0 :(得分:3)

It's used to create a Here String