What output will the following command produce?
seq 1 5 20
What output will the following command produce?
seq 1 5 20
The command 'seq 1 5 20' generates a sequence of numbers starting from 1, incrementing by 5, and stopping before surpassing 20. Therefore, the output would be 1, 6, 11, and 16, but none of the provided options correctly match this output.
xxx@Ubuntu-VirtualBox:~$ seq 1 5 20 1 6 11 16
output is 1 6 11 16 - none of these answers!
the output will be vertical like Stef_88 commented. for the output to be in row, use the parameter seq -s " " 1 5 20
$ seq 1 5 20 1 6 11 16
what is the exactly answer b/c A, B and C are the same its 1