Imported from ../bash-2.0.tar.gz.
[platform/upstream/bash.git] / examples / functions / shcat
1 shcat()
2 {
3         while read -r line
4         do
5                 echo "$line"
6         done
7 }