0
這裏是我的代碼Shell腳本JSON,蘋果
function poke() {
json="curl -s -X GET http://pokeapi.co/api/v2/type/bug.json";
prop="half_damage_to"
temp=echo $json | sed 's/\\\\\//\//g' | sed 's/[{}]//g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) print a[i]}' | sed 's/\"\:\"/\|/g' | sed 's/[\,]/ /g' | sed 's/\"//g' | grep -w $prop
echo ${temp##*|}
}
這裏的問題是終端只打印出第一JSON項目,half_damage_to:[name|fighting
時,應該將它們打印所有。我到底該如何打印JSON字典中half_damage_to
內的所有項目?