summaryrefslogtreecommitdiff
path: root/static/v10/man1/seq.1
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/v10/man1/seq.1
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/v10/man1/seq.1')
-rw-r--r--static/v10/man1/seq.146
1 files changed, 0 insertions, 46 deletions
diff --git a/static/v10/man1/seq.1 b/static/v10/man1/seq.1
deleted file mode 100644
index 4f1ae853..00000000
--- a/static/v10/man1/seq.1
+++ /dev/null
@@ -1,46 +0,0 @@
-.TH SEQ 1
-.CT 1 numbers
-.SH NAME
-seq \- print sequences of numbers
-.SH SYNOPSIS
-.B seq
-[
-.B -w
-]
-[
-.BI -f format
-]
-[
-.I first
-[
-.I incr
-]
-]
-.I last
-.SH DESCRIPTION
-.I Seq
-prints a sequence of numbers, one per line, from
-.I first
-(default 1) to as near
-.I last
-as possible, in increments of
-.I incr
-(default 1).
-The numbers are interpreted as floating point.
-.PP
-Normally integer values are printed as decimal integers.
-The options are
-.TP
-.BI -f format
-Use the
-.IR printf (3)-style
-.I format
-for printing each (floating point) number.
-The default is
-.LR %g .
-.TP
-.B -w
-Equalize the widths of all numbers by padding with
-leading zeros as necessary.
-Not effective with option
-.BR -f .