i-bash/examples/functions/shcat

8 lines
57 B
Text
Raw Normal View History

1996-08-26 18:22:31 +00:00
shcat()
{
1996-12-23 17:02:34 +00:00
while read -r line
1996-08-26 18:22:31 +00:00
do
echo "$line"
done
}