Less than

Redirect data to stdin. More information: https://gnu.org/software/bash/manual/bash.html#Redirecting-Input.

{{command}} < {{path/to/file.txt}}

{{command}} << {{EOF}} <Enter> {{multiline_data}} <Enter> {{EOF}}

{{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}}