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