2 # Author: Noah Friedman <friedman@prep.ai.mit.edu>
4 # Last modified: 1993-09-29
7 # Conversion to bash v2 syntax done by Chet Ramey
13 # Usage: shcat {file1} {file2} {...}
15 # Like `cat', only this is all inline bash.
27 while read -r line
; do
33 if [ -r "${file}" ]; then
34 while read -r line
; do
38 # This will cause the error to be printed on stderr
49 # shcat.bash ends here