Computer Science/Linux
쉘 파일에서 json 파일 읽어오기
2mukee
2023. 8. 25. 16:52
320x100
320x100
json 파일
{
"animal": [
{
"type": "dog",
"name": "noname",
"action": "bark",
"home": "nowhere"
}
]
}
쉘 파일
JSON="path/to/json"
KEY="action"
action=$(grep -o "\"$KEY\": \"[^\"]*" $JSON | grep -o "[^\"]*$")
echo $action
- output
bark
Reference
300x250
728x90