14 lines
248 B
Bash
Executable File
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
|