Last active
May 10, 2023 15:32
-
-
Save salsferrazza/e6a1a231016523c3499506c871b484bc to your computer and use it in GitHub Desktop.
ERCOT SPP interval generator
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 | |
| for HOUR in $(seq -w 0 23) | |
| do | |
| for MINUTE in 00 15 30 45 | |
| do | |
| SLICE=$(date +%Y%m%d_${HOUR}${MINUTE}) | |
| echo SPPHLXNP6905_${SLICE} | |
| done | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment