plex-tools/plex-tools.sh
deathbybandaid eb87809e33 test
2023-03-14 10:52:49 -04:00

16 lines
261 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' '$1' is not a valid plex-tools command"
fi
}
script_delegation