This commit is contained in:
Marc Beninca 2024-11-12 06:42:16 +01:00
parent abb6ed3a26
commit b37e4abc4e
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

7
bash/util.sh Normal file
View file

@ -0,0 +1,7 @@
not() {
case "${1}" in
"false") echo "true" ;;
"true") echo "false" ;;
*) ;;
esac
}