Skip to content

Instantly share code, notes, and snippets.

@salsferrazza
Last active May 10, 2023 15:32
Show Gist options
  • Select an option

  • Save salsferrazza/e6a1a231016523c3499506c871b484bc to your computer and use it in GitHub Desktop.

Select an option

Save salsferrazza/e6a1a231016523c3499506c871b484bc to your computer and use it in GitHub Desktop.
ERCOT SPP interval generator
#!/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