From 293f7465d910717dd8719faf767e71374faeeac9 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 4 Oct 2023 22:41:02 +0200 Subject: Add a README --- README.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 README.md 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. -- cgit v1.2.3