awk/testdir/t.3.x

8 lines
50 B
Plaintext

{
x = $1
while (x > 1) {
print x
x = x / 10
}
}