plex-tools/plex-tools.sh
deathbybandaid e20984525c test
2023-03-14 10:36:34 -04:00

16 lines
255 B
Bash

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