9 lines
165 B
Bash
9 lines
165 B
Bash
#!/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
|