diff --git a/plex-tools.sh b/plex-tools.sh index d5036b0..bc85429 100644 --- a/plex-tools.sh +++ b/plex-tools.sh @@ -2,16 +2,6 @@ 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 -} - -script_delegation +case "$1" in + token) ./plex-token.sh;; +esac