부제: 필터 하나로 JSON을 뽑고 걸러내고 변형한다jq '.database' config.json # database 객체만 추출jq -r '.features[]' config.json # 배열 원소를 따옴표 없이 한 줄씩jq '.replicas * .database.pool' config.json # 값 계산$ jq --versionjq-1.6$ jq '.database' config.json{ "host": "db.internal", "port": 5432, "pool": 10}$ jq -r '.features[]' config.jsonauthratelimitmetrics$ jq '.replicas * .database.pool' config.json30jq는 JSON을 다루..