- Against All Authority (Miami, FL) - Political ska-punk with political lyrics.
- Catbite (Philadelphia, PA) - Ska-punk with tour-tested energy, new-wave color, and pop polish.
- Half Past Two (Southern California) - Ska-punk with veteran history, big hooks, and heavy guitars.
- Kill Lincoln (Washington, DC) - Ska-punk with a concise, personality-forward FEST bio.
- Mustard Plug (Grand Rapids MI) - Ska-punk with DIY roots, veteran history, and tour-tested energy.
- Sorry Sweetheart (Denver, CO) - Ska-punk with tour-tested energy, heavy guitars, and pop poli
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 | |
| if [ $# -lt 3 ] | |
| then | |
| echo "Usage: reindex.sh source_url target_url index [query]" | |
| echo "Example: reindex.sh http://source.com:9200 http://target.com:9200 products_v1 '{\"query\":{\"range\":{\"mod_date\":{\"from\":\"2015-12-03T20:00:00\"}}}}'" | |
| exit 1 | |
| fi | |
| SOURCE_URL=$1 |