First Commit, check for command

This commit is contained in:
deathbybandaid 2023-03-14 08:13:28 -04:00
parent 6b7dc21954
commit e63a7e9062

8
plex-tools.sh Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
echo "Welcome to plex-tools wrapper utility!"
if ! command -v plex-tools &> /dev/null
then
echo "plex-tools command could not be found"
exit
fi