In Bash there are two well-known constructs named here-document and here-string. here-document is
wc << EOF
> one two three
> four five
> EOF
2 5 24
and here-string is
bc <<< 5*4
Continue reading In Bash there are two well-known constructs named here-document and here-string. here-document is
wc << EOF
> one two three
> four five
> EOF
2 5 24
and here-string is
bc <<< 5*4
Continue reading