Redirect data to
stdin. More information: https://gnu.org/software/bash/manual/bash.html#Redirecting-Input.
stdin (achieves the same effect as cat file.txt |):{{command}} < {{path/to/file.txt}}
stdin (requires a multiline command):{{command}} << {{EOF}} <Enter> {{multiline_text}} <Enter> {{EOF}}
stdin (achieves the same effect as echo string |):{{command}} <<< {{string}}
{{command}} < {{path/to/file.txt}} > {{path/to/file2.txt}}
cat << {{EOF}} > {{path/to/file.txt}} <Enter> {{multiline_data}} <Enter> {{EOF}}
cat <<- {{EOF}} > {{path/to/file.txt}} <Enter> {{multiline_data}} <Enter> {{EOF}}
diff <({{command1}}) <({{command2}})