#! /bin/sh if [[ -x $(which apt 2>&1) ]]; then exec apt install -y $@ elif [[ -x $(which apk 2>&1) ]]; then exec apk add $@ elif [[ -x $(which dnf 2>&1) ]]; then exec dnf install -y $@ elif [[ -x $(which yum 2>&1) ]]; then exec yum install -y $@ elif [[ -x $(which brew 2>&1) ]]; then exec brew install $@ elif [[ -x $(which pacman 2>&1) ]]; then exec pacman -S $@ fi