Add shebang and use "read -r" for correctness

revert-b25c0d81
Jordan Geoghegan 2020-01-26 02:24:36 +00:00
parent 103c543a0e
commit 817a8de400
1 changed files with 5 additions and 3 deletions

View File

@ -1,14 +1,16 @@
#!/bin/bash
# Moe was here # Moe was here
echo "=============" echo "============="
echo "Do you want to purge Desktop components from your Ubuntu 18.04 installation?" echo "Do you want to purge Desktop components from your Ubuntu 18.04 installation?"
echo "You cannot undo this. Choose wisely." echo "You cannot undo this. Choose wisely."
echo "Do NOT run this as root, instead run it with 'sudo'; if you want a complete wipe." echo "Do NOT run this as root, instead run it with 'sudo'; if you want a complete wipe."
echo "(y)es or (N)o" echo "(y)es or (N)o"
read purgeDesktop read -r purgeDesktop
if [ "$purgeDesktop" = "Y" ] || [ "$purgeDesktop" = "y" ]; then if [ "$purgeDesktop" = "Y" ] || [ "$purgeDesktop" = "y" ]; then
echo "Really really sure?" echo "Really really sure?"
echo "(y)es or (N)o" echo "(y)es or (N)o"
read purgeDesktopSecond read -r purgeDesktopSecond
if [ "$purgeDesktopSecond" = "Y" ] || [ "$purgeDesktopSecond" = "y" ]; then if [ "$purgeDesktopSecond" = "Y" ] || [ "$purgeDesktopSecond" = "y" ]; then
echo "!----------------------------!" echo "!----------------------------!"
echo "Reset network interface to DHCP? (Automatically assign IP Address from network)" echo "Reset network interface to DHCP? (Automatically assign IP Address from network)"
@ -16,7 +18,7 @@ if [ "$purgeDesktop" = "Y" ] || [ "$purgeDesktop" = "y" ]; then
echo "You can edit it after in /etc/network/interfaces" echo "You can edit it after in /etc/network/interfaces"
echo "!----------------------------!" echo "!----------------------------!"
echo "(y)es or (N)o" echo "(y)es or (N)o"
read resetNetworkInterface read -r resetNetworkInterface
if [ "$resetNetworkInterface" = "Y" ] || [ "$resetNetworkInterface" = "y" ]; then if [ "$resetNetworkInterface" = "Y" ] || [ "$resetNetworkInterface" = "y" ]; then
echo "auto lo" > "/etc/network/interfaces" echo "auto lo" > "/etc/network/interfaces"
echo "iface lo inet loopback" >> "/etc/network/interfaces" echo "iface lo inet loopback" >> "/etc/network/interfaces"