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