Created
November 11, 2024 09:21
-
-
Save dewomser/73f47abbaf980326cb2d5cabdd5214a4 to your computer and use it in GitHub Desktop.
Monate mit Frostgefahr (Winter). Ein Bash Einzeiler
This file contains 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