aboutsummaryrefslogtreecommitdiffstats
path: root/luhncheck.1
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-12-28 00:12:27 +0100
committerMattias Andrée <m@maandree.se>2025-12-28 00:12:27 +0100
commit9a7f9c3fcd27f4b945dd5159e7fdc8795bb3c452 (patch)
tree886f0bdfca144fc6f2057841eef3313fdf745d06 /luhncheck.1
parentFirst commit (diff)
downloadgluhncheck-6d13c1e21dfc10f950a3c6cdeceecded1f626d3d.tar.gz
gluhncheck-6d13c1e21dfc10f950a3c6cdeceecded1f626d3d.tar.bz2
gluhncheck-6d13c1e21dfc10f950a3c6cdeceecded1f626d3d.tar.xz
Fork into gluhncheckHEAD1.0master
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'luhncheck.1')
-rw-r--r--luhncheck.185
1 files changed, 0 insertions, 85 deletions
diff --git a/luhncheck.1 b/luhncheck.1
deleted file mode 100644
index 11da1e5..0000000
--- a/luhncheck.1
+++ /dev/null
@@ -1,85 +0,0 @@
-.TH LUHNCHECK 1 LUHNCHECK
-
-.SH NAME
-luhncheck \- Check number with Luhn's algorithm
-
-.SH SYNOPSIS
-.B luhncheck
-.IR number " ..."
-
-.SH DESCRIPTION
-The
-.B luhncheck
-utility checks that a number, containing a check digit,
-is valid according to Luhn's algorithm.
-
-.SH OPTIONS
-The
-.B luhncheck
-utility conforms to the Base Definitions volume of POSIX.1-2017,
-.IR "Section 12.2" ,
-.IR "Utility Syntax Guidelines" .
-.PP
-No options are supported.
-
-.SH OPERANDS
-The following operand is supported:
-.TP
-.I number
-Number to check.
-
-.SH STDIN
-Not used.
-
-.SH INPUT FILES
-None.
-
-.SH ENVIRONMENT VARIABLES
-No environment variables affect the execution of
-.BR luhncheck .
-
-.SH ASYNCHRONOUS EVENTS
-Default.
-
-.SH STDOUT
-The
-.B luhncheck
-utility will print one line per
-.IR number ,
-in the order they are provided in the command line,
-to the standard output.
-Each line will be use the format
-
-.RS
-.B \(dq%s is %s\en\(dq,
-.IB number ,
-.RI < \fB\(dqOK\(dq\fP\ if\ valid,\ \fB\(dqinvalid\(dq\fP\ otherwise >.
-.RE
-
-.SH STDERR
-The standard error is only used for diagnostic messages.
-
-.SH OUTPUT FILES
-None.
-
-.SH EXTENDED DESCRIPTION
-None.
-
-.SH EXIT STATUS
-The following exit values are returned:
-.TP
-0
-All
-.IR number s
-are valid.
-.TP
-1
-At least one
-.I number
-is invalid.
-.TP
-2
-An error occured.
-
-.SH SEE ALSO
-.BR gluhncheck (1)