Skip to content

Instantly share code, notes, and snippets.

@dewomser
Last active August 29, 2024 21:41
Show Gist options
  • Save dewomser/44be73f9c746f50834e0f029e9dd1834 to your computer and use it in GitHub Desktop.
Save dewomser/44be73f9c746f50834e0f029e9dd1834 to your computer and use it in GitHub Desktop.
Was ist an meinem Geburtstag passiert, Bash liest im calendar
#!/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