RosettaCodeData/Task/Here-document/UNIX-Shell/here-document-3.sh
2023-07-01 13:44:08 -04:00

5 lines
103 B
Bash

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