I'm on a mac, and trying to dumb every possible 8 digit number from 0-9, with repetitions allowed, to a file, which would be 100 000 000 numbers.
I've tried
jot -r 100000000 00000000 99999999
That just gives me 100 000 000 random numbers with duplicates, and not all are 8 digits. I can't figure out if there's a switch in jot that does what I want to do, or if jot is even able to do what I to do. How can I do this?
I need every possible 8 digit serial number for 10^8, which is 100 000 000 number. I don't know what program can generate these numbers.