From b776bf1b69204675fe13efbed0e54fa16678e00f Mon Sep 17 00:00:00 2001 From: Lynne Date: Sun, 28 Apr 2019 21:17:03 +1000 Subject: [PATCH] ect: add page (#2951) --- pages/common/ect.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/ect.md diff --git a/pages/common/ect.md b/pages/common/ect.md new file mode 100644 index 000000000..bb8f9bd99 --- /dev/null +++ b/pages/common/ect.md @@ -0,0 +1,16 @@ +# ect + +> Efficient Compression Tool (or ECT) is a C++ file optimizer. It supports PNG, JPEG, GZIP and ZIP files. +> Homepage: . + +- Compress a file: + +`ect {{filename.png}}` + +- Compress a file with the highest compression level and multithreading: + +`ect -9 --mt-deflate {{filename.png}}` + +- Compress all the files in a directory recursively, keeping the original modification time: + +`ect -keep -recurse {{directory}}`