Primo abbozzo. Ancora molta strada da fare

This commit is contained in:
Guido Longoni
2019-12-27 03:20:51 +01:00
parent ae707ad8c1
commit 7c20823522
10 changed files with 649 additions and 0 deletions
Executable
+13
View File
@@ -0,0 +1,13 @@
#! /bin/bash --
[ ! -z "${GREZZO_1577142105}" ] && return; GREZZO_1577142105=0
function feat_missing() {
! command -v "$1" 2>&1 >/dev/null
}
function feat_needed() {
FEAT="$1"
if feat_missing "$FEAT"; then
eval "feat_add_$FEAT"
fi
}