You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
297 B
Bash
18 lines
297 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Updating package lists..."
|
|
sudo apt update -y
|
|
|
|
echo "Installing Firefox..."
|
|
sudo apt install -y firefox
|
|
|
|
# Verify installation
|
|
if command -v firefox &> /dev/null; then
|
|
echo "Firefox installed successfully!"
|
|
else
|
|
echo "Firefox installation failed."
|
|
exit 1
|
|
fi
|