Last active
December 23, 2024 18:05
-
-
Save benwaldie/4583391 to your computer and use it in GitHub Desktop.
TUAW > TextExpander Date Snippet > Next Sunday
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
set theDate to (current date) + 1 * days | |
repeat until weekday of theDate = Sunday | |
set theDate to theDate + 1 * days | |
end repeat | |
set theDate to year of theDate & "-" & (text -2 thru -1 of ("0" & (month of theDate as integer))) & "-" & (text -2 thru -1 of ("0" & (day of theDate as integer))) as string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment