xref: /illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/t.3.x (revision a28480febf31f0e61debac062a55216a98a05a92)
1 {
2 x = $1
3 while (x > 1) {
4 	print x
5 	x = x / 10
6 }
7 }
8