mirror of
https://codeberg.org/h3xx/simplify_static_dir
synced 2024-08-14 23:57:24 +00:00
Add README
This commit is contained in:
parent
b1b4e18e05
commit
46be55d5ff
1 changed files with 33 additions and 0 deletions
33
README.md
Normal file
33
README.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Static Dir Simplifier
|
||||
|
||||
Optimize directories for size by combining identical files using hard links.
|
||||
|
||||
## Options
|
||||
|
||||
Usage: `simplify_static_dir` **[OPTIONS]** **[DIR]...**
|
||||
|
||||
| Option | Meaning
|
||||
| - | -
|
||||
| -f | Print a sum of the number of freed bytes.
|
||||
| -m **REGEX** | Only match file paths matching **REGEX**.
|
||||
| -M **REGEX** | Exclude file paths matching **REGEX**.
|
||||
| -v | Verbose output.
|
||||
| -z | Include zero-length files in search. Normally they are ignored (you don't save diskspace by hard-linking empty files).
|
||||
| --help | Output this help message and exit.
|
||||
| --version | Output version information and exit.
|
||||
|
||||
By default, scans the current directory.
|
||||
|
||||
## License
|
||||
|
||||
Copyright (C) 2010-2022 Dan Church.
|
||||
|
||||
License GPLv3: GNU GPL version 3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
||||
|
||||
with Commons Clause 1.0 (https://commonsclause.com/).
|
||||
|
||||
This is free software: you are free to change and redistribute it.
|
||||
|
||||
There is NO WARRANTY, to the extent permitted by law.
|
||||
|
||||
You may NOT use this software for commercial purposes.
|
Loading…
Reference in a new issue