jq
直近1000件のタイトルを表示
直近10件のタイトルと概要を表示
このページを表示
Scrapboxのエクスポートファイルから、先頭の 10件分、インポートデータを取り出す
$ cat path/to/export-file.json | jq '[.pages0:10[] |{title: .title, lines: [.lines[]]}]' Scrapboxのエクスポートファイルから、先頭の10件分、インポートファイルを作り出す。
$ (echo -n '{ "pages": ' && cat path/to/your-export-file.json | jq '[.pages0:10[] |{title: .title, lines: [.lines[]]}]' && echo '}') > your-import-file.json $ jq . your-import-file.json
https://ricapitolare.vercel.app/svg?url=https://github.com/stedolan/jq#.png https://github.com/stedolan/jq