Created
October 17, 2019 12:39
-
-
Save flannon/a2add941611e43af324ac6095383d3b1 to your computer and use it in GitHub Desktop.
This file contains 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
from https://stackoverflow.com/a/13360181/3447107 | |
#Make an array, here I'm using the output from openstack | |
OFS=$IFS | |
IFS=',' | |
PROPERTIES=($(openstack flavor show $FLAVOR -c properties -f json | jq -r '.[]')) | |
IFS=$OIFS | |
# Walk the array backwards | |
for (( i=${#PROPERTIES[@]}-1 ; i>=0 ; i-- )); do | |
oecho ${PROPERTIES[i]} | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment