harakit/docs/intcmp.1

104 lines
2.3 KiB
Groff
Raw Normal View History

.\" Copyright (c) 20232024 DTB <trinity@trinity.moe>
.\" Copyright (c) 20232024 Emma Tebibyte <emma@tebibyte.media>
.\"
.\" This work is licensed under CC BY-SA 4.0. To see a copy of this license,
.\" visit <http://creativecommons.org/licenses/by-sa/4.0/>.
.\"
.TH INTCMP 1 2024-06-06 "Harakit X.X.X"
.SH NAME
intcmp \(en compare integers
.\"
.SH SYNOPSIS
2024-06-04 05:07:19 +00:00
intcmp
.RB [ -egl ]\ integer\ integer...
.SH DESCRIPTION
Compare integers to each other.
2024-06-04 05:07:19 +00:00
.\"
.SH OPTIONS
2024-06-04 05:07:19 +00:00
.IP \fB-e\fP
Permits given integers to be equal to each other.
.IP \fB-g\fP
Permits a given integer to be greater than the following integer.
.IP \fB-l\fP
Permits a given integer to be less than the following integer.
.\"
2024-06-04 05:07:19 +00:00
.SH EXAMPLES
2024-06-18 05:27:19 +00:00
It may help to think of the
.BR -e ,
.BR -g ,
and
.B -l
options as equivalent to the infix algebraic \(lq=\(rq, \(lq>\(rq, and \(lq<\(rq
operators respectively, with each option putting its symbol between every given
integer. The following example is equivalent to evaluating \(lq1 < 2 < 3\(rq:
2024-06-04 22:11:33 +00:00
\"
.RS
2024-06-18 05:27:19 +00:00
intcmp -l 1 2 3
.RE
.\"
.SH DIAGNOSTICS
2024-06-04 05:07:19 +00:00
2024-06-18 05:27:19 +00:00
The program will exit with a successfully for a valid expression and with an
error code of 1 for an invalid expression.
In the event of an error, a debug message will be printed and the program will
exit with the appropriate
.BR sysexits.h (3)
error code.
.\"
.SH BUGS
2024-06-04 05:07:19 +00:00
2024-06-18 05:27:19 +00:00
.BR -egl ,
\(lqequal to or less than or greater than\(rq, always exits successfully for
valid program usage and may be abused to function as an integer validator. Use
.BR str (1)
instead.
.\"
.SH CAVEATS
2024-06-04 05:07:19 +00:00
There are multiple ways to express compound comparisons; \(lqless than or equal
2024-06-18 05:27:19 +00:00
to\(rq can be
.B -le
or
.BR -el ,
for example.
2024-06-18 05:27:19 +00:00
The inequality comparison is
.B -gl
.B or
.B -lg
for \(lqless than or greater than\(rq;
this is elegant but unintuitive.
.\"
.SH RATIONALE
2024-06-04 05:07:19 +00:00
The traditional tool for integer comparisons in POSIX and other Unix shells has
been
.BR test (1).
This tool also handles string comparisons and file scrutiny. These parts of its
functionality have been broken out into multiple utilities.
This program\(cqs functionality may be performed on a POSIX-compliant system
with
.BR test (1p).
.\"
.SH AUTHOR
2024-06-04 05:07:19 +00:00
Written by DTB
.MT trinity@trinity.moe
.ME .
.\"
.SH COPYRIGHT
.\"
Copyright \(co 2023 DTB. License AGPLv3+: GNU AGPL version 3 or later
<https://gnu.org/licenses/gpl.html>.
.\"
.SH SEE ALSO
.BR scrut (1),
.BR strcmp (1),
.BR str (1),
.BR test (1p)