From c4e80884b5c8ee0e2fbabaa867586d29e1ace9ef Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 27 Dec 2016 18:00:02 +1300 Subject: Add max(1df) and min(1df) --- man/man1/max.1df | 19 +++++++++++++++++++ man/man1/min.1df | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 man/man1/max.1df create mode 100644 man/man1/min.1df (limited to 'man') diff --git a/man/man1/max.1df b/man/man1/max.1df new file mode 100644 index 00000000..28431da4 --- /dev/null +++ b/man/man1/max.1df @@ -0,0 +1,19 @@ +.TH MAX 1df "September 2016" "Manual page for max" +.SH NAME +.B max +\- print the maximum of a list of numbers +.SH SYNOPSIS +printf '%u\\n' 3 55 17 | +.B max +.br +.B max +file +.br +.B max +file1 file2 +.SH DESCRIPTION +.B max +collects all the newline-delimited numbers given as input, and prints the +maximum. +.SH AUTHOR +Tom Ryder diff --git a/man/man1/min.1df b/man/man1/min.1df new file mode 100644 index 00000000..e3279d3b --- /dev/null +++ b/man/man1/min.1df @@ -0,0 +1,19 @@ +.TH MIN 1df "September 2016" "Manual page for min" +.SH NAME +.B min +\- print the minimum of a list of numbers +.SH SYNOPSIS +printf '%u\\n' 182 2 22 | +.B min +.br +.B min +file +.br +.B min +file1 file2 +.SH DESCRIPTION +.B min +collects all the newline-delimited numbers given as input, and prints the +minimum. +.SH AUTHOR +Tom Ryder -- cgit v1.2.3