#!/bin/sh
#
## Deflate an loose object file and write to standard output.
## Source: git-extra-commands

 Usage: git-object-deflate <file>
# Deflate an loose object file and write to standard output.
exec perl -MCompress::Zlib -e 'undef $/; print uncompress(<>)'
