added first word in color, bold and underlined #2

Merged
crony merged 2 commits from TlasT/udict:prettier into main 2023-06-11 16:55:54 +02:00
2 changed files with 17 additions and 3 deletions
Showing only changes of commit 6888fc5ace - Show all commits

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
PREFIX = /usr/local
make:
@echo "usage: make [install|uninstall]"
install:
mkdir -p ${PREFIX}/bin
cp -f udict ${PREFIX}/bin
chmod 755 ${PREFIX}/bin/udict
uninstall:
rm -f ${PREFIX}/bin/udict

View File

@ -6,9 +6,11 @@ Simple script that uses simple dictionary to get the most liked/correct definiti
```bash
$ udict smh
meaning, "[shaking my head]", smh is typically used when something is obvious, [plain old stupid], or [disappointment].
meaning, "shaking my head", smh is typically used when something is obvious, plain old stupid, or disappointment.
```
## Installation
just copy the script to your path
> as root
```bash
sudo make install
```