What output will the command seq 10 produce?
A continuous stream of numbers increasing in increments of 10 until stopped.
The numbers 1 through 10 with one number per line.
The numbers 0 through 9 with one number per line.
The number 10 to standard output.
The command seq 10 produces the numbers 1 through 10 with one number per line.
$ seq 10 1 2 3 4 5 6 7 8 9 10