RosettaCodeData/Task/Here-document/UNIX-Shell/here-document-3.sh

6 lines
103 B
Bash
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
if true; then
2019-09-12 10:33:56 -07:00
cat <<- EOF
The <<- variant deletes any tabs from start of each line.
EOF
2013-04-10 22:43:41 -07:00
fi