Skip to content

Instantly share code, notes, and snippets.

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