Skip to content

Instantly share code, notes, and snippets.

View Muizzyranking's full-sized avatar

Muiz Oyebowale Muizzyranking

View GitHub Profile
#!/bin/bash
# Function to check if a command exists
command_exists() {
command -v "$1" >/dev/null 2>&1
}
# Function to install dependencies on Fedora
install_dependencies_fedora() {
for package in "$@"; do