echo "Hi?" > output
cat < input
curl <http://definitely.not.exists> 2> error
curl <http://definitely.not.exists> &> output_and_error
echo "More Content!" >> output
cat <<< "Inject directly!"
cat <<EOF
Hello, world!
This is multiline string!
EOF