Skip to content

Instantly share code, notes, and snippets.

@dewomser
Last active September 16, 2025 13:36
Show Gist options
  • Select an option

  • Save dewomser/73f47abbaf980326cb2d5cabdd5214a4 to your computer and use it in GitHub Desktop.

Select an option

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