KimSeoYe / star_SimpleTar

A simplified version of linux utility 'tar'

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

star : Simple tar

GNU tar is an archiving program designed to store multiple files in a single file (an archive), and to manipulate such archives. This is a simplified version of tar.

It can archive files under one directory into one file, or can extract the files from the archived file.

How to build and use

$ gcc -o star star.c
$ ./star archive <archive-file-name> <target-directory-path>
$ ./star extract <archive-file-name>

About

A simplified version of linux utility 'tar'


Languages

Language:C 100.0%