Simple CLI tool for compressing and decompressing files with password.
./build
./sq -c <file1,file2> -o <outputDir>
-v Print version information
-c Input files or directory to be compressed [strings] (Space separated)
-o Output directory for compressed/decompressed files (Optional)
-a Algorithm to use for compression (Optional) [string]
-p Password for encryption (Optional) [string]
-all Read all files in the provided directory (Optional)
-d Input file to decompress [strings] (Space separated)
-h Print help
./sq -c file.txt file2.txt
./sq -c file.txt file2.txt -p mySecurepass1234
./sq -all folder
./sq -c file.txt -o output/files
./sq -d compressed.sq
./sq -d compressed.sq -p mySecurepass1234
./sq -c file.txt -a huffman
./sq -c file.txt -a lzma