#!/bin/bash # # Title: PGBlitz (Reference Title File) # Author(s): Admin9705 - Deiteq # URL: https://pgblitz.com - http://github.pgblitz.com # GNU: General Public License v3.0 ################################################################################ touch /var/plexguide/server.id.stored start=$(cat /var/plexguide/server.id) stored=$(cat /var/plexguide/server.id.stored) if [ "$start" != "$stored" ]; then tee <<-EOF ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ↘️ ESTABLISHING ~ Server's Identification ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⚠️ WARNING: Use > One Word - All LowerCase & Keep it Simple! EOF # Standby read -p '🌏 TYPE Server ID | Press [ENTER]: ' typed /var/plexguide/server.id cat /var/plexguide/server.id >/var/plexguide/server.id.stored sleep 3 fi fi