plex-tools/plex-tools.sh
deathbybandaid 235af0e4d1 test
2023-03-14 09:22:42 -04:00

16 lines
243 B
Bash

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