get list of prices, lowest first

master
Jeff Moe 3 years ago
parent edcccf4c97
commit ce3ed8324c

@ -0,0 +1,9 @@
#!/bin/bash
# Gets lowest spot price for device type hardcoded in script below
eqx-market-spot-prices | \
jq '.spot_market_prices | .[]."m3.large.x86".price' | \
sort -Vu | \
grep -v null
Loading…
Cancel
Save