Code backup
This commit is contained in:
2026-05-10 16:59:01 +02:00
commit 368d6fafea
796 changed files with 315310 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
EnableDisable() {
case $1 in
1) local stateED="On";;
2) local stateED="Off";;
esac
echo $stateED
}
printf "%s\t%s\t%s\n" "Status:" "$(EnableDisable 1)" "Test On"
printf "%s\t%s\t%s\n" "Status:" "$(EnableDisable 2)" "Test Off"