Last active
August 29, 2024 21:41
-
-
Save dewomser/44be73f9c746f50834e0f029e9dd1834 to your computer and use it in GitHub Desktop.
Was ist an meinem Geburtstag passiert, Bash liest im calendar
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 | |
# Was was ist an meinem Geburtstag sonst noch passiert ? | |
# Ein Einzeiler | |
# (calender muss installiert sein) | |
echo "Was war eigentlich am:"; read -p "Tag (2-stellig): " tag; read -p "Monat (2-stellig): " monat;calendar -A 0 -t $monat$tag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment