Skip to content

Instantly share code, notes, and snippets.

@dfrankland
Last active November 11, 2021 00:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dfrankland/b1c733a134dcf7c1d0ae05dcee8b01d8 to your computer and use it in GitHub Desktop.
Save dfrankland/b1c733a134dcf7c1d0ae05dcee8b01d8 to your computer and use it in GitHub Desktop.
Curl Innova discs available from the factory store
#! env bash
# Checking which full production discs are available in Champion Glow plastic
curl -sL 'https://proshop.innovadiscs.com/full-production/?_bc_fsnf=1&Plastic+Type=Glow+Champion&list_all=Disc%20Model' | grep -ie 'Disc+Model=.*"' | sed 's/.*Disc+Model=\(.*\)"/\1/' | sed 's/+/ /' | perl -pe 's/\%(\w\w)/chr hex $1/ge'
# Checking which full production discs are available in Champion plastic
curl -sL 'https://proshop.innovadiscs.com/full-production/?_bc_fsnf=1&Plastic+Type=Champion&list_all=Disc%20Model' | grep -ie 'Disc+Model=.*"' | sed 's/.*Disc+Model=\(.*\)"/\1/' | sed 's/+/ /' | perl -pe 's/\%(\w\w)/chr hex $1/ge'
# Checking which limited discs are available in Champion Glow plastic
curl -sL 'https://proshop.innovadiscs.com/limited/?_bc_fsnf=1&Plastic+Type=Glow+Champion&list_all=Disc%20Model' | grep -ie 'Disc+Model=.*"' | sed 's/.*Disc+Model=\(.*\)"/\1/' | sed 's/+/ /' | perl -pe 's/\%(\w\w)/chr hex $1/ge'
# Checking which limited discs are available in Champion plastic
curl -sL 'https://proshop.innovadiscs.com/limited/?_bc_fsnf=1&Plastic+Type=Champion&list_all=Disc%20Model' | grep -ie 'Disc+Model=.*"' | sed 's/.*Disc+Model=\(.*\)"/\1/' | sed 's/+/ /' | perl -pe 's/\%(\w\w)/chr hex $1/ge'
# Checking which Factory Second discs are available in Champion Glow plastic
curl -sL 'https://proshop.innovadiscs.com/factory-second/?_bc_fsnf=1&Plastic+Type=Glow+Champion&list_all=Disc%20Model' | grep -ie 'Disc+Model=.*"' | sed 's/.*Disc+Model=\(.*\)"/\1/' | sed 's/+/ /' | perl -pe 's/\%(\w\w)/chr hex $1/ge'
# Checking which Factory Second discs are available in Champion plastic
curl -sL 'https://proshop.innovadiscs.com/factory-second/?_bc_fsnf=1&Plastic+Type=Champion&list_all=Disc%20Model' | grep -ie 'Disc+Model=.*"' | sed 's/.*Disc+Model=\(.*\)"/\1/' | sed 's/+/ /' | perl -pe 's/\%(\w\w)/chr hex $1/ge'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment