Files
scripts/update
T
2023-06-26 21:53:06 -06:00

14 lines
248 B
Bash
Executable File

#!/bin/zsh
firefox https://archlinux.org;
read "?Ok to update (y/n, default y): " OK
if [[ $OK == "y" || $OK == "" ]]; then
echo "starting update..."
sudo pacman -Syu;
echo "finishing update..."
else
echo "abandoning update."
fi