CentOS Stream 9
Sponsored Link

Command Help

Command :   Back to index

seq : print a sequence of numbers
[SYNOPSIS] seq OPTION FIRST LAST
OPTION
-f FORMAT use printf style floating-point FORMAT
# seq -f '2015-07-%02g' 31
Displayed from 2015-07-01 to 2015-07-31
-s STRING use STRING to separate numbers (default: \n)
# seq -s ', ' 1 10
-w equalize width by padding with leading zeroes
# seq -w 1 100
 001
 002
 003
 .....
 .....
 098
 099
 100
 

Matched Content