RosettaCodeData/Task/Here-document/UNIX-Shell/here-document-3.sh
2019-09-12 10:33:56 -07:00

5 lines
103 B
Bash

if true; then
cat <<- EOF
The <<- variant deletes any tabs from start of each line.
EOF
fi