摘要: 安装 Homebrew: brew tap mongodb/brew brew update brew install mongodb-community 启动 MongoDB 服务: brew services start mongodb-community 相关路径(Apple Silicon) 阅读全文
posted @ 2024-10-09 21:27 Undefined443 阅读(16) 评论(0) 推荐(0)
摘要: jq 官网 简单提取: 假设你有一个 JSON 文件 data.json,其内容如下: { "name": "Alice", "age": 30, "city": "New York" } 要提取 "name" 的值,可以使用: jq '.name' data.json 嵌套提取: 对于嵌套的 JS 阅读全文
posted @ 2024-10-09 21:09 Undefined443 阅读(31) 评论(0) 推荐(0)