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)
Home / cs-notes / Operating System / Linux / Shell / here document, here string and process substitution
wc << EOF
> EOF
wc <<< "abc"
wc < <(echo abc)