Last active
September 16, 2025 13:36
-
-
Save dewomser/73f47abbaf980326cb2d5cabdd5214a4 to your computer and use it in GitHub Desktop.
Monate mit Frostgefahr (Winter). Ein Bash Einzeiler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #test | |
| #month=03;if "$month" -lt 04 || "$month" -gt 10 ; then echo "lolo" ; fi | |
| #fertig | |
| month=$(date +%m);if [ "$month" -lt 04 ]||[ "$month" -gt 10 ] ; then echo "Frostgefahr" ; fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment