aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-10-04 22:41:02 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-10-04 22:41:02 +0200
commit293f7465d910717dd8719faf767e71374faeeac9 (patch)
treea2461c0f11c159d62ffb4da6838dafc44da29271
parent79134b4395c8ad9280c1264e80c3b4f4c39e1780 (diff)
Add a READMEv1.0.0
-rw-r--r--README.md54
1 files changed, 54 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..701f809
--- /dev/null
+++ b/README.md
@@ -0,0 +1,54 @@
+# ordinal
+
+Ordinal is a command-line utility to convert cardinal numbers into ordinal ones.
+It’s functionality can be summed up nicely in the two following examples:
+
+```sh
+$ seq 20 | ordinal
+1st
+2nd
+3rd
+4th
+5th
+6th
+7th
+8th
+9th
+10th
+11th
+12th
+13th
+14th
+15th
+16th
+17th
+18th
+19th
+20th
+```
+
+```sh
+$ date +'%-d of %B, %Y' | ordinal -p1
+4th of October, 2023
+```
+
+For more details, read the `ordinal(1)` manual page.
+
+## Installation
+
+Installation is very simple:
+
+```sh
+$ make
+$ sudo make install
+```
+
+If you do not have `flex` installed, you probably have `lex` instead so you can
+try the following:
+
+```sh
+$ make LEX=lex LFLAGS= LDLIBS=-ll
+```
+
+If the above doesn’t work, send an email over to
+`~mango/public-inbox@lists.sr.ht` describing your problem.