diff --git a/c/mapping/mapper_seqgen.c b/c/mapping/mapper_seqgen.c
index bda191360..16962810d 100644
--- a/c/mapping/mapper_seqgen.c
+++ b/c/mapping/mapper_seqgen.c
@@ -89,7 +89,6 @@ static void mapper_seqgen_usage(FILE* o, char* argv0, char* verb) {
fprintf(o, "Start, stop, and/or step may be floating-point. Output is integer if start,\n");
fprintf(o, "stop, and step are all integers. Step may be negative. It may not be zero\n");
fprintf(o, "unless start == stop (in which case zero records are emitted).\n");
- fprintf(o, "Most useful as '%s -n %s ... then ...'\n", MLR_GLOBALS.bargv0, verb);
}
// ----------------------------------------------------------------
diff --git a/doc/content-for-cookbook.html b/doc/content-for-cookbook.html
index a6772cc8f..a278559b5 100644
--- a/doc/content-for-cookbook.html
+++ b/doc/content-for-cookbook.html
@@ -129,8 +129,7 @@ POKI_RUN_COMMAND{{cat expo-sample.sh}}HERE
Set the Miller random-number seed so this webdoc looks the same every time I regenerate it.
Use pretty-printed tabular output.
Use pretty-printed tabular output.
- Use -n so Miller won’t read any input files, and seqgen to produce 100,000
- records i=0, i=1, etc.
+ Use seqgen to produce 100,000 records i=0, i=1, etc.
Send those to a put step which defines an inverse-transform-sampling function and
calls it twice, then computes the sum and product of samples.
/ Send those to a histogram, and from there to a bar-plotter. This is just for visualization; you
diff --git a/doc/content-for-reference.html b/doc/content-for-reference.html
index 4688bf4d8..069ea53c8 100644
--- a/doc/content-for-reference.html
+++ b/doc/content-for-reference.html
@@ -1281,9 +1281,9 @@ POKI_RUN_COMMAND{{mlr sec2gmtdate -h}}HERE
POKI_RUN_COMMAND{{mlr seqgen -h}}HERE
-POKI_RUN_COMMAND{{mlr -n seqgen --stop 10}}HERE
-POKI_RUN_COMMAND{{mlr -n seqgen --start 20 --stop 40 --step 4}}HERE
-POKI_RUN_COMMAND{{mlr -n seqgen --start 40 --stop 20 --step -4}}HERE
+POKI_RUN_COMMAND{{mlr seqgen --stop 10}}HERE
+POKI_RUN_COMMAND{{mlr seqgen --start 20 --stop 40 --step 4}}HERE
+POKI_RUN_COMMAND{{mlr seqgen --start 40 --stop 20 --step -4}}HERE
shuffle
diff --git a/doc/cookbook.html b/doc/cookbook.html
index 10a56cb60..fc991413e 100644
--- a/doc/cookbook.html
+++ b/doc/cookbook.html
@@ -669,8 +669,7 @@ mlr -n \
Set the Miller random-number seed so this webdoc looks the same every time I regenerate it.
Use pretty-printed tabular output.
Use pretty-printed tabular output.
- Use -n so Miller won’t read any input files, and seqgen to produce 100,000
- records i=0, i=1, etc.
+ Use seqgen to produce 100,000 records i=0, i=1, etc.
Send those to a put step which defines an inverse-transform-sampling function and
calls it twice, then computes the sum and product of samples.
/ Send those to a histogram, and from there to a bar-plotter. This is just for visualization; you
diff --git a/doc/manpage.html b/doc/manpage.html
index a8ecff426..191205797 100644
--- a/doc/manpage.html
+++ b/doc/manpage.html
@@ -976,7 +976,6 @@ VERBS
Start, stop, and/or step may be floating-point. Output is integer if start,
stop, and step are all integers. Step may be negative. It may not be zero
unless start == stop (in which case zero records are emitted).
- Most useful as 'mlr -n seqgen ... then ...'
shuffle
Usage: mlr shuffle {no options}
diff --git a/doc/manpage.txt b/doc/manpage.txt
index aa8b8af4d..44a722423 100644
--- a/doc/manpage.txt
+++ b/doc/manpage.txt
@@ -829,7 +829,6 @@ VERBS
Start, stop, and/or step may be floating-point. Output is integer if start,
stop, and step are all integers. Step may be negative. It may not be zero
unless start == stop (in which case zero records are emitted).
- Most useful as 'mlr -n seqgen ... then ...'
shuffle
Usage: mlr shuffle {no options}
diff --git a/doc/mlr.1 b/doc/mlr.1
index e0c2fb9fa..13ea34c94 100644
--- a/doc/mlr.1
+++ b/doc/mlr.1
@@ -1102,7 +1102,6 @@ output as specified by the following options:
Start, stop, and/or step may be floating-point. Output is integer if start,
stop, and step are all integers. Step may be negative. It may not be zero
unless start == stop (in which case zero records are emitted).
-Most useful as 'mlr -n seqgen ... then ...'
.fi
.if n \{\
.RE
diff --git a/doc/reference.html b/doc/reference.html
index 41101d0ec..760436195 100644
--- a/doc/reference.html
+++ b/doc/reference.html
@@ -4546,7 +4546,6 @@ output as specified by the following options:
Start, stop, and/or step may be floating-point. Output is integer if start,
stop, and step are all integers. Step may be negative. It may not be zero
unless start == stop (in which case zero records are emitted).
-Most useful as 'mlr -n seqgen ... then ...'
@@ -4554,7 +4553,7 @@ Most useful as 'mlr -n seqgen ... then ...'
-$ mlr -n seqgen --stop 10
+$ mlr seqgen --stop 10
i=0
i=1
i=2
@@ -4571,7 +4570,7 @@ i=9
-$ mlr -n seqgen --start 20 --stop 40 --step 4
+$ mlr seqgen --start 20 --stop 40 --step 4
i=20
i=24
i=28
@@ -4583,7 +4582,7 @@ i=36
-$ mlr -n seqgen --start 40 --stop 20 --step -4
+$ mlr seqgen --start 40 --stop 20 --step -4
i=40
i=36
i=32