initial commit

This commit is contained in:
2025-05-18 19:20:34 +02:00
commit 1a731404e9
5 changed files with 41 additions and 0 deletions

14
install-tools.sh Normal file
View File

@ -0,0 +1,14 @@
#!/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."