| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
Here is a snippet of how long options with arguments are handled in the
OpenBSD sort(1) manual:
.It Fl S Ar size , Fl Fl buffer-size Ns = Ns Ar size
There are a few take aways from this:
1) The argument should be shown for both the short and long option
2) You don’t need to use “Ns” before the comma
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
The example is supposed to center the input as if the output device is a
terminal with a width of 80 characters. The example doesn't use the `-w'
flag though, so we set that up.
|
|
This initial commit includes the following:
- A gitignore file
- A license (0-Clause BSD)
- A Makefile supporting installation
- A manual page written in mdoc(7)
- A fully working initial implementation
|