A handful of useful productivity tools wrapped up in a simple shell script.
if command -v ufw &> /dev/null; then ufw status; elif command -v firewall-cmd &> /dev/null; then firewall-cmd --list-all; else echo "No firewall command found"; fi ...