plex-tools/plex-tools.sh
deathbybandaid 1c11f8d20e test
2023-03-14 08:56:45 -04:00

13 lines
237 B
Bash

#!/bin/bash
echo "Welcome to plex-tools wrapper utility!"
is_command() {
local check_command="$1"
command -v "${check_command}" >/dev/null 2>&1
}
if ! is_command plex-tools ; then
echo "plex-tools command could not be found"
fi