15 lines
277 B
Bash
15 lines
277 B
Bash
#!/bin/bash
|
|
# Install standard tools
|
|
|
|
echo "Tools werden installiert..."
|
|
|
|
if command -v apt &>/dev/null; then
|
|
sudo apt update
|
|
sudo apt install -y nano mc htop curl git ack btop
|
|
else
|
|
echo "Unsupported package manager"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Tools fertig installiert."
|