https://github.com/michaelaquilina/bzip2-cat
A little utility I created for outputting the contents of text files compressed under bz2 or gzip
https://github.com/michaelaquilina/bzip2-cat
Last synced: 7 months ago
JSON representation
A little utility I created for outputting the contents of text files compressed under bz2 or gzip
- Host: GitHub
- URL: https://github.com/michaelaquilina/bzip2-cat
- Owner: MichaelAquilina
- Created: 2014-06-11T17:50:48.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-27T21:47:48.000Z (over 11 years ago)
- Last Synced: 2024-11-16T23:40:49.705Z (11 months ago)
- Language: C
- Homepage:
- Size: 195 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Bzip2 Cat
=========A utility similiar to the UNIX command "cat" that is able to display the content of text files compressed using either the bz2 or gzip compression algorithm.
Requirements
------------The following need to be installed on a Ubuntu machine:
* gcc
* libbz2
* libbz2-dev
* zlib1g-devBuilding
--------Simply build by running the `make` command
You can then view a compressed text file as follows:
./bcat sometextfile.txt.bz2
Move the `bcat` executable to a location in your path (like /usr/local/bin) to run it anywhere