5 lines
149 B
Bash
Executable File
5 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
# Script to look up word in dictionary file in the format: "word:\tdefinition\n"
|
|
|
|
rg --no-line-number "^$1:" ~/.local/share/dictionary.txt
|