plex-tools/plex-tools.sh
deathbybandaid 12ede6cccb test
2023-03-14 10:53:42 -04:00

16 lines
256 B
Bash

#!/bin/bash
echo "Welcome to plex-tools wrapper utility!"
script_delegation ()
{
if [ -f "$1" ] ; then
case $1 in
token) source ./plex-token.sh ;;
esac
else
echo "'$1' is not a valid plex-tools command"
fi
}
script_delegation