summaryrefslogtreecommitdiff
path: root/examples/functions/shcat
blob: 55a30965d4919dd9a56de8c53139c53d8cf868b5 (plain)
1
2
3
4
5
6
7
shcat()
{
	while read line
	do
		echo "$line"
	done
}