illumos-port-bash/examples/functions/shcat

8 lines
62 B
Plaintext

shcat()
{
while IFS= read -r line
do
echo "$line"
done
}