#!/bin/bash if [ ! "$BASH_VERSION" ] ; then bash $0 $1 $2 $3 $4 $5 $6 $7 $8 $9 exit 1 fi warencli-syntax-line-douple() { echo -n " ============================== " } warencli-syntax-line-single() { echo -n " ------------------------------ " } warencli-start() { warencli-syntax-line-douple echo -n "Warén CLI " warencli-syntax-line-douple } warencli-stop () { echo " " echo " " exit 1 } warencli-update() { if [[ -d "./src" ]]; then echo ">>> Building... <<<" podman run -it --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp docker.io/library/php:8-cli php generator.php &> /dev/null mv wx.tmp wx chmod +x wx else echo ">>> Updating... <<<" sudo curl https://git.waren.io/warengroup/wx/raw/branch/master/wx -o /opt/wx &> /dev/null if [[ -d "/usr/bin" ]]; then sudo ln -sf /opt/wx /usr/bin/wx &> /dev/null fi sudo chmod +x /usr/bin/wx &> /dev/null fi } COMMAND=$1 warencli-start if [[ ! -z $1 ]]; then warencli-$1 $2 $3 $4 $5 $6 $7 $8 $9 fi warencli-stop