File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -39,24 +39,31 @@ You can download pre-built binaries for your platform from the [Releases](https:
39
39
### Compressing Files
40
40
41
41
``` bash
42
- sq compress [files...] -o [output_dir] -p [password] -a [algorithm]
42
+ SquirrelZip -c [files...] -o [output_dir] -p [password] -a [algorithm] -all
43
43
```
44
44
45
45
Options:
46
+ - ` -c ` : Input files or directory to be compressed
46
47
- ` -o ` : Output directory (optional)
47
48
- ` -p ` : Password for encryption (optional)
48
- - ` -a ` : Compression algorithm (optional)
49
+ - ` -a ` : Compression algorithm (optional, defaults to "huffman")
50
+ - ` -all ` : Read all files in the input directory (optional)
49
51
50
52
### Decompressing Files
51
53
52
54
``` bash
53
- sq decompress [file] -o [output_dir] -p [password]
55
+ SquirrelZip -d [file] -o [output_dir] -p [password]
54
56
```
55
57
56
58
Options:
59
+ - ` -d ` : Input file to decompress
57
60
- ` -o ` : Output directory (optional)
58
61
- ` -p ` : Password for decryption (required if file was encrypted)
59
62
63
+ ### Additional Options
64
+ - ` -v ` : Print version
65
+ - ` -h ` : Print help
66
+
60
67
## Development
61
68
62
69
### Project Structure
You can’t perform that action at this time.
0 commit comments