2 lines
87 B
Bash
2 lines
87 B
Bash
f=`cat foo.txt` # f will contain the entire contents of the file
|
|
printf '%s\n' "$f"
|