x-cmd pkg | dasel - JSON、YAML、TOML、XML、CSV 数据的查询和修改工具
# 查询 ascii 码表中的首个 ASCII 码的 "Description" 字段的值
x ascii --json | x dasel -r json '[0].Description'
# 使用 all() 选择器和 key() 方法获取 JSON 数据中每个对象的 key
x ascii --json | x dasel -r json 'all().key()'
# 修改 ascii 码表中首个 ASCII 码 "Description" 字段的值为 "Empty"
x ascii --yml | x dasel put -r yaml --selector '[0].Description' --value 'Empty'
# 读取 CSV 格式的数据并将其转为 JSON 格式
x ascii --csv | x dasel -r csv -w json