seq.1 (576B)
1 .TH SEQ 1 sbase\-VERSION 2 .SH NAME 3 seq \- print a sequence of numbers 4 .SH SYNOPSIS 5 .B seq 6 .RB [ \-w ] 7 .RB [ \-f 8 .IR fmt ] 9 .RB [ \-s 10 .IR separator ] 11 .RI [ start 12 .RI [ step ]] 13 .IR end 14 .SH DESCRIPTION 15 .B seq 16 will print a sequence of numbers from 17 .I start 18 (default 1) to 19 .IR end , 20 in 21 .IR step 22 intervals (default 1). 23 .SH OPTIONS 24 .TP 25 .BI \-f " format" 26 specifies the format used for output lines, as per 27 .IR printf (3). 28 .TP 29 .BI \-s " separator" 30 specifies the separator to print between output lines 31 .TP 32 .BI \-w 33 tells seq to print out lines in equal width 34 35 .SH SEE ALSO 36 .IR printf (3)