Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andikleen/lz4json
C decompress tool for mozilla lz4json format
https://github.com/andikleen/lz4json
Last synced: 11 days ago
JSON representation
C decompress tool for mozilla lz4json format
- Host: GitHub
- URL: https://github.com/andikleen/lz4json
- Owner: andikleen
- Created: 2014-12-28T02:34:56.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-09-16T11:31:26.000Z (about 1 year ago)
- Last Synced: 2024-06-12T04:26:05.687Z (5 months ago)
- Language: C
- Size: 13.7 KB
- Stars: 92
- Watchers: 10
- Forks: 21
- Open Issues: 1
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
A little utility to unpack lz4json files as generated by Firefox's bookmark backups and session restore.
This is a different format from what the normal lz4 utility expects.
The data is dumped to stdout.Requires liblz4 (Debian package liblz4-dev, Fedora package lz4-devel) to be installed.
lz4jsoncat ~/.mozilla/.../bookmarkbackups/bookmarks-2014-12-27_151_0UCIWGB4x3hhQXpuSMs5WQ==.jsonlz4
On some non Linux systems the lz libraries might be installed into directories
that are not searched by the linker by default. If that's the case
please override the CFLAGS and LDFLAGS on the command linee.g. if they are in /usr/local:
make CFLAGS="-I/usr/local/include -O2" LDFLAGS="-L/usr/local/lib"
-Andi Kleen