Go to file
2022-11-13 20:24:11 -06:00
bin Initial Commit 2022-10-31 15:38:39 -05:00
build Initial Commit 2022-10-31 15:38:39 -05:00
include Cleaned program code 2022-11-12 01:25:08 -06:00
src Added total listed size 2022-11-13 20:24:11 -06:00
test Cleaned program code 2022-11-12 01:25:08 -06:00
.gitignore Added test files to .gitignore 2022-11-10 17:41:30 -06:00
Makefile Fixed archive output bug 2022-11-10 22:10:49 -06:00
README.md Final additions for submission 2022-11-13 17:45:17 -06:00

#Stuffy Made by: Gregory Crawford (gcrawfo@siue.edu)

#Compiling: Open root folder where Makefile is located. Type make and the program should compile to the ./bin folder

#Usage: bin/stuffy.out [-a | -l | -r | -e] [Archive Name] [Filename] > [Out Location]

#Arguments: [-a] -- Enter a specific number of producers Ex: bin/stuffy.out -a test/files/newstuffyarchive.test test/files/temp.test

[-l] -- List contents of [Archive Name] by Name: [Filename] | Size: [Size] Ex: `bin/stuffy.out -l test/files/newstuffyarchive.test

[-r] -- Remove [Filename] from [Archive Name] Ex: bin/stuffy.out -r test/files/newstuffyarchive.test test/files/temp4.test

[-e] -- Extract [Filename] data to stdout from [Archive Name] Ex: bin/stuffy.out -e test/files/newstuffyarchive.test test/files/temp3.test > test/files/output.test

#Testing: A few functions are built in for testing Try running make test | 8/8 Tests should pass