Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@ Who uses esdoc-archive ?
The ES-DOC stack.


Quick Extraction
--------------------------------------
```bash
cat docs_* > combined.tar.gz
mkdir -p extracted_docs
tar zxf combined.tar.gz -C extracted_docs

find extracted_docs/ -type f -name "*.json" -exec sh -c 'jq --indent 4 . "$1" > "$1.tmp" && mv "$1.tmp" "$1"' _ {} \;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it be possible to add a brief comment that gives an idea what this line does?

```




Further Information ?
--------------------------------------

Expand Down