1
0

more cleaning

This commit is contained in:
dtb
2022-09-18 10:44:47 -04:00
parent 49b9f21067
commit 9189124f2d
26 changed files with 13 additions and 410 deletions

33
streq/streq.1 Normal file
View File

@@ -0,0 +1,33 @@
.TH STREQ 1
.SH NAME
streq \(en compare strings
.SH SYNOPSIS
streq
.RB [ strings... ]
.SH DESCRIPTION
Streq checks whether the given strings are the same.
Streq exits successfully if the strings are identical and unsuccessfully if not.
.SH DIAGNOSTICS
Streq will print an error message and exit unsuccessfully with a status described in sysexits(3) if used incorrectly (given less than two operands).
.SH UNICODE
Streq will exit unsuccessfully if the given strings are not identical;
Unicode strings may need to normalized if the intent is to check visual similarity and not byte similarity.
.SH STANDARDS
Streq is not described in POSIX.1-2017.
Streq's function may be performed on a purely POSIX system with test(1).
.SH COPYRIGHT
Public domain.