plex-tools/plex-tools.sh
deathbybandaid 895affb84d test
2023-03-14 11:08:11 -04:00

10 lines
214 B
Bash

#!/bin/bash
echo "Welcome to plex-tools wrapper utility!"
case "$1" in
token) source ./plex-token.sh;;
"") echo "No plex-tools command given";;
*) echo "'$1' is not a valid plex-tools command";;
esac