lzfse

Apple's LZFSE compression library and command-line compression tool

brewmacoslinux
Try with needOr install directly
Source

About

Apple LZFSE compression library and command-line tool

Commands

lzfse

Examples

Compress a file using LZFSE compression$ lzfse -encode -i input.txt -o input.txt.lzfse
Decompress an LZFSE compressed file$ lzfse -decode -i input.txt.lzfse -o input.txt
Compress from stdin to stdout$ cat largefile.bin | lzfse -encode > largefile.bin.lzfse