mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-06-23 21:51:04 -04:00
.. | ||
2019 | ||
2020 | ||
2021 | ||
2022 | ||
2023 | ||
2024 | ||
2025 | ||
readme.md |
Add new date formats using / editing the bash script.
Example:
YEAR=2019; mkdir -p "$YEAR"; FILE="$YEAR/${YEAR}-MM-DD.txt"; for m in {01..12}; do for d in {01..31}; do echo "$YEAR-$m-$d" >> "$FILE"; done; done