diff options
author | Raymaekers Luca <luca@spacehb.net> | 2025-03-17 16:14:00 +0100 |
---|---|---|
committer | Raymaekers Luca <luca@spacehb.net> | 2025-03-17 16:14:00 +0100 |
commit | 0416eae424bf4f97a346ba78015bea93b3f60db9 (patch) | |
tree | 823cc6bb215b276e68d3af4005d71d3cd6b0f5f8 /bin/extra/trl | |
parent | 40d5d1f8ef400d1c5cb9b8500ae13d9a456f6c67 (diff) | |
parent | 6d18189f7f1a97eb879cb55d35ab41fecb74b07b (diff) |
Merge branch 'main' of db:dotfiles
Diffstat (limited to 'bin/extra/trl')
-rwxr-xr-x | bin/extra/trl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/bin/extra/trl b/bin/extra/trl index 957d0fb..4a27f6a 100755 --- a/bin/extra/trl +++ b/bin/extra/trl @@ -1,7 +1,15 @@ #!/bin/sh # Translate words using http://context.reverso.net and scraping the answers -# with 'pup' and 'curl'. + +for dependency in pup curl fzf +do + if ! command -v "$dependency" > /dev/null + then + >&2 printf '"%s" (dependency) could not be found.\n' "$dependency" + exit 1 + fi +done # returns available languages languages () { |