Skip to the content.

Home / cs-notes / Operating System / Linux / Shell / here document, here string and process substitution

here document

wc << EOF
> EOF

here string

wc <<< "abc"

process substitution

wc < <(echo abc)