This commit is contained in:
Christer Warén 2024-04-26 04:33:23 +03:00
parent d0c8f026f9
commit 4b80a15e05

97
wx Executable file
View File

@ -0,0 +1,97 @@
#!/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
fi
}
warencli-help() {
echo "
Usage: $0 COMMAND [OPTIONS]
Common Commands:
ssh SSH
config Config
sign Certificates
Authentication Commands:
login Login
logout Logout
Management Commands:
settings Settings
Maintenance Commands:
install Install
update Update
";
}
warencli-install() {
echo ">>> Install";
}
warencli-settings() {
echo ">>> Settings";
}
warencli-ssh() {
echo ">>> SSH";
}
warencli-login() {
echo ">>> Authentication: Login";
}
warencli-logout() {
echo ">>> Authentication: Logout";
}
warencli-ssh-config(){
echo ">>> SSH: Config"
}
warencli-ssh-sign(){
echo ">>> SSH: Certificates"
}
COMMAND=$1
warencli-start
if [[ ! -z $1 ]]; then
warencli-$1 $2 $3 $4 $5 $6 $7 $8 $9
fi
warencli-stop