Modular personalized dictionary generator - [git] - [github] - [license] - by Michael Constantine Dimopoulos - <mk@mcdim.xyz>
nhance reads from standard input or a file and appends to it the lines capitalized. It prints to standard output.
For example, with the following command$ cat words.txt | nhancewhere
words.txt
contains this:
dog cat fishthe program will produce this:
dog cat fish Dog Cat FishAnd with the
-f
flag, like so:
$ cat words.txt | nhance -fIt will print this:
dog cat fish Dog Cat Fish DOG CAT FISH