8 lines
239 B
Bash
8 lines
239 B
Bash
|
|
#!/bin/bash
|
||
|
|
#
|
||
|
|
# Chapter 9's read loop and its COPY/CONCAT/RENAME/SCRATCH example both work on
|
||
|
|
# files a reader is assumed to already have. Two lines of text is all either
|
||
|
|
# needs.
|
||
|
|
printf 'ONE\nTWO\n' > data.txt
|
||
|
|
printf 'AAA\n' > a.txt
|