i guess bash doesn't need newline characters escaped in mult-line strings 🤷🏻‍♂️

This commit is contained in:
Brennen Raimer
2026-03-23 11:18:58 -04:00
parent 9bb7dec9f5
commit 04175afb26

View File

@@ -52,14 +52,14 @@ fi
browser=0
while [[ $browser -lt 1 || $browser -gt 4 ]]; do
echo
read -n 1 -p "\\n
Which browser do you want to install?\\n
\\n
1. Mozilla Firefox\\n
2. Google Chrome\\n
3. Microsoft Edge\\n
4. Brave\\n
\\n
read -n 1 -p "
Which browser do you want to install?
1. Mozilla Firefox
2. Google Chrome
3. Microsoft Edge
4. Brave
Enter 1, 2, 3 or 4 > " browser
echo
done