May 2018
Beginner
332 pages
7h 28m
English
Let's write a script for using the sort command along with the here document:
#!/bin/bash sort << EOF cherry mango apple banana EOF
$ chmod u+x here_02.sh
$ ./here_02.sh
apple
banana
cherry
mango
In this script, the here document is enclosed between the EOF pattern. We have used the here document to supply text to the sort command.