Files
Apps-Community/apps/image/_image.sh
2019-02-28 17:57:37 -07:00

52 lines
1.5 KiB
Bash

#!/bin/bash
#
# Title: PlexGuide (Reference Title File)
# Author(s): Admin9705
# URL: https://pgblitz.com - http://github.pgblitz.com
# GNU: General Public License v3.0
################################################################################
# BAD INPUT
badinput () {
echo
read -p '⛔️ ERROR - BAD INPUT! | PRESS [ENTER] ' typed < /dev/tty
question1
}
# FUNCTION - ONE
question1 () {
# Recall Program
image=$(cat /tmp/program_var)
# Checks Image List
file="/opt/communityapps/apps/image/$image"
if [ ! -e "$file" ]; then exit; fi
tee <<-EOF
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🌵 PG Multi Image Selector - $image
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
EOF
count=1
while read p; do
echo "$count - $p"
echo "$p" > /tmp/display$count
count=$[count+1]
done </opt/communityapps/apps/image/$image
echo ""
read -p '🚀 Type Number | PRESS [ENTER]: ' typed < /dev/tty
if [[ "$typed" -ge "1" && "$typed" -lt "$count" ]]; then
mkdir -p /var/plexguide/image
cat "/tmp/display$typed" > "/var/plexguide/image/$image"
else badinput; fi
}
# END OF FUNCTIONS ############################################################
question1