Skip to content

Instantly share code, notes, and snippets.

@assafmo
Last active March 16, 2022 23:42
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save assafmo/8bf20feee80a79b34dce75c70ff23d2a to your computer and use it in GitHub Desktop.
Save assafmo/8bf20feee80a79b34dce75c70ff23d2a to your computer and use it in GitHub Desktop.
Import an archive full of JSONs into CouchDB
#!/bin/bash
#json per line (same result, but for example can use jq to set _id)
7z x -so $1 | jq -c . | couchimport --db mydb --type jsonl
#!/bin/bash
#json stream
7z x -so $1 | couchimport --db mydb --type jsonl
@dch
Copy link

dch commented Feb 19, 2019

nice hack thanks for sharing!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment