#! /bin/bash -- [ -n "${GREZZO_1604316819-}" ] && return; GREZZO_1604316819=0 function feat_addpacks_curl() { if ! feat_missing "apt-get"; then sudo apt-get update sudo apt-get install -y bash curl elif ! feat_missing "pacman"; then sudo pacman -S --needed bash curl elif ! feat_missing "apk"; then sudo apk add --no-cache bash curl elif ! feat_missing "yum"; then sudo yum install bash curl elif ! feat_missing "zypper"; then sudo zypper in bash curl fi } function feat_add_curl() { feat_addpacks_curl }