Created
October 12, 2022 19:58
-
-
Save ms747/54cb6840a2a8be5a8f8515bb0e4d3f75 to your computer and use it in GitHub Desktop.
Dooms Script
This file contains hidden or 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 | |
DOOM=$(date -d "30 Oct 22" +%s) | |
NOW=$(date +%s) | |
if [[ $NOW -gt $DOOM ]]; then | |
echo "WORKS" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment