What output does the command seq 10 produce?
What output does the command seq 10 produce?
The command seq 10 produces a sequence of numbers from 1 to 10, each on a new line. The command's default behavior is to start at 1 and increment by 1 until it reaches the specified number.
[root@test ~]# seq 10 1 2 3 4 5 6 7 8 9 10 [root@test ~]#
tested in RedHat (RHEL 8)
E. tested on Ubuntu
ok tested in Manjaro