]> git.ipfire.org Git - thirdparty/bash.git/blob - examples/scripts/cat.sh
Imported from ../bash-2.05.tar.gz.
[thirdparty/bash.git] / examples / scripts / cat.sh
1 shcat()
2 {
3 while read -r ; do
4 echo "$REPLY"
5 done
6 }
7
8 if [ -n "$1" ]; then
9 shcat < "$1"
10 else
11 shcat
12 fi