forked from crony/udict
Merge branch 'main' into prettier
This commit is contained in:
commit
6888fc5ace
12
Makefile
Normal file
12
Makefile
Normal 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
|
@ -6,9 +6,11 @@ Simple script that uses simple dictionary to get the most liked/correct definiti
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ udict smh
|
$ 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
|
## Installation
|
||||||
|
> as root
|
||||||
just copy the script to your path
|
```bash
|
||||||
|
sudo make install
|
||||||
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user