RosettaCodeData/Task/Loops-For/UnixPipes/loops-for.unixpipes
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

4 lines
109 B
Text

yes \ | cat -n | (while read n ; do
[ $n -gt 5 ] && exit 0;
yes \* | head -n $n | xargs -n $n echo
done)