mktar: Use `wc` instead of `du` in summary message
[sunny256-utils.git] / git-expand
blobdd8aede56fc5fd381d25fc934ed2e1b88e245bbe
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
4 """git-expand - Unpack Git object
6 File ID: 76189104-142e-11e3-8ac9-001f3b596ec9
7 License: GNU General Public License version 2 or later.
9 """
11 import sys
12 import zlib
14 sys.stdout.write(zlib.decompress(sys.stdin.read()))