You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+42-47Lines changed: 42 additions & 47 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,59 +9,54 @@ XCompress is a free file archiver utility on Linux, providing multi-format archi
9
9
10
10
```
11
11
EXAMPLES:
12
-
xcompress a foo.wav # Archives foo.wav to foo.rar
13
-
xcompress a foo.wav /root/bar.txt # Archives foo.wav and /root/bar.txt to foo.rar
14
-
xcompress a -o /tmp/out.7z foo.wav # Archives foo.wav to /tmp/out.7z
15
-
xcompress a -b foo/bar # Archives foo/bar folder to bar.rar as small as possible
16
-
xcompress a -p password foo.wav # Archives foo.wav to foo.rar with a password
17
-
xcompress x foo.rar # Extracts foo.rar into current working directory
18
-
xcompress x foo.tar.gz /tmp/out_folder # Extracts foo.tar.gz into /tmp/out_folder
19
-
xcompress x -p password foo.rar # Extracts foo.rar with a password into current working directory
12
+
xcompress a foo.wav # Archive foo.wav to foo.rar
13
+
xcompress a foo.wav /root/bar.txt # Archive foo.wav and /root/bar.txt to foo.rar
14
+
xcompress a -o /tmp/out.7z foo.wav # Archive foo.wav to /tmp/out.7z
15
+
xcompress a -b foo/bar # Archive foo/bar folder to bar.rar as small as possible
16
+
xcompress a -p password foo.wav # Archive foo.wav to foo.rar with a password
17
+
xcompress x foo.rar # Extract foo.rar into current working directory
18
+
xcompress x foo.tar.gz /tmp/out_folder # Extract foo.tar.gz into /tmp/out_folder
19
+
xcompress x -p password foo.rar # Extract foo.rar with a password into current working directory
20
20
21
21
USAGE:
22
-
xcompress [FLAGS] [OPTIONS] [SUBCOMMAND]
23
-
24
-
FLAGS:
25
-
-q, --quiet Makes programs not print anything on the screen.
26
-
-s, --single-thread Uses only one thread.
27
-
-h, --help Prints help information
28
-
-V, --version Prints version information
22
+
xcompress [OPTIONS] [SUBCOMMAND]
29
23
30
24
OPTIONS:
31
-
-p, --password <PASSWORD> Sets password for your archive file. (Only supports 7Z, ZIP and RAR.) Set an
32
-
empty string to read a password from stdin.
33
-
--7z-path <7Z_PATH> Specifies the path of your 7z executable binary file. [default: 7z]
34
-
--bunzip2-path <BUNZIP2_PATH> Specifies the path of your bunzip2 executable binary file. [default: bunzip2]
35
-
--bzip2-path <BZIP2_PATH> Specifies the path of your bzip2 executable binary file. [default: bzip2]
36
-
--compress-path <COMPRESS_PATH> Specifies the path of your compress executable binary file. [default:
37
-
compress]
38
-
--gunzip-path <GUNZIP_PATH> Specifies the path of your gunzip executable binary file. [default: gunzip]
39
-
--gzip-path <GZIP_PATH> Specifies the path of your gzip executable binary file. [default: gzip]
40
-
--lbzip2-path <LBZIP2_PATH> Specifies the path of your lbzip2 executable binary file. [default: lbzip2]
41
-
--lunzip-path <LUNZIP_PATH> Specifies the path of your lunzip executable binary file. [default: lunzip]
42
-
--lzip-path <LZIP_PATH> Specifies the path of your lzip executable binary file. [default: lzip]
43
-
--lzma-path <LZMA_PATH> Specifies the path of your lzma executable binary file. [default: lzma]
44
-
--pbzip2-path <PBZIP2_PATH> Specifies the path of your pbzip2 executable binary file. [default: pbzip2]
45
-
--pigz-path <PIGZ_PATH> Specifies the path of your pigz executable binary file. [default: pigz]
46
-
--plzip-path <PLZIP_PATH> Specifies the path of your plzip executable binary file. [default: plzip]
47
-
--pxz-path <PXZ_PATH> Specifies the path of your pxz executable binary file. [default: pxz]
48
-
--pzstd-path <PZSTD_PATH> Specifies the path of your pzstd executable binary file. [default: pzstd]
49
-
--rar-path <RAR_PATH> Specifies the path of your rar executable binary file. [default: rar]
50
-
--tar-path <TAR_PATH> Specifies the path of your tar executable binary file. [default: tar]
51
-
--unlzma-path <UNLZMA_PATH> Specifies the path of your unlzma executable binary file. [default: unlzma]
52
-
--unrar-path <UNRAR_PATH> Specifies the path of your unrar executable binary file. [default: unrar]
53
-
--unxz-path <UNXZ_PATH> Specifies the path of your unxz executable binary file. [default: unxz]
54
-
--unzip-path <UNZIP_PATH> Specifies the path of your unzip executable binary file. [default: unzip]
55
-
--unzstd-path <UNZSTD_PATH> Specifies the path of your unzstd executable binary file. [default: unzstd]
56
-
--xz-path <XZ_PATH> Specifies the path of your xz executable binary file. [default: xz]
57
-
--zip-path <ZIP_PATH> Specifies the path of your zip executable binary file. [default: zip]
58
-
--zstd-path <ZSTD_PATH> Specifies the path of your zstd executable binary file. [default: zstd]
25
+
-p, --password <PASSWORD> Set password for your archive file. (Only supports 7Z, ZIP and RAR.) Set an empty string to read a password from stdin.
26
+
--7z-path <7Z_PATH> Specify the path of your 7z executable binary file. [default: 7z]
27
+
--bunzip2-path <BUNZIP2_PATH> Specify the path of your bunzip2 executable binary file. [default: bunzip2]
28
+
--bzip2-path <BZIP2_PATH> Specify the path of your bzip2 executable binary file. [default: bzip2]
29
+
--compress-path <COMPRESS_PATH> Specify the path of your compress executable binary file. [default: compress]
30
+
--gunzip-path <GUNZIP_PATH> Specify the path of your gunzip executable binary file. [default: gunzip]
31
+
--gzip-path <GZIP_PATH> Specify the path of your gzip executable binary file. [default: gzip]
32
+
-h, --help Print help information
33
+
--lbzip2-path <LBZIP2_PATH> Specify the path of your lbzip2 executable binary file. [default: lbzip2]
34
+
--lunzip-path <LUNZIP_PATH> Specify the path of your lunzip executable binary file. [default: lunzip]
35
+
--lzip-path <LZIP_PATH> Specify the path of your lzip executable binary file. [default: lzip]
36
+
--lzma-path <LZMA_PATH> Specify the path of your lzma executable binary file. [default: lzma]
37
+
--pbzip2-path <PBZIP2_PATH> Specify the path of your pbzip2 executable binary file. [default: pbzip2]
38
+
--pigz-path <PIGZ_PATH> Specify the path of your pigz executable binary file. [default: pigz]
39
+
--plzip-path <PLZIP_PATH> Specify the path of your plzip executable binary file. [default: plzip]
40
+
--pxz-path <PXZ_PATH> Specify the path of your pxz executable binary file. [default: pxz]
41
+
--pzstd-path <PZSTD_PATH> Specify the path of your pzstd executable binary file. [default: pzstd]
42
+
-q, --quiet Make programs not print anything on the screen.
43
+
--rar-path <RAR_PATH> Specify the path of your rar executable binary file. [default: rar]
44
+
-s, --single-thread Use only one thread.
45
+
--tar-path <TAR_PATH> Specify the path of your tar executable binary file. [default: tar]
46
+
--unlzma-path <UNLZMA_PATH> Specify the path of your unlzma executable binary file. [default: unlzma]
47
+
--unrar-path <UNRAR_PATH> Specify the path of your unrar executable binary file. [default: unrar]
48
+
--unxz-path <UNXZ_PATH> Specify the path of your unxz executable binary file. [default: unxz]
49
+
--unzip-path <UNZIP_PATH> Specify the path of your unzip executable binary file. [default: unzip]
50
+
--unzstd-path <UNZSTD_PATH> Specify the path of your unzstd executable binary file. [default: unzstd]
51
+
-V, --version Print version information
52
+
--xz-path <XZ_PATH> Specify the path of your xz executable binary file. [default: xz]
53
+
--zip-path <ZIP_PATH> Specify the path of your zip executable binary file. [default: zip]
54
+
--zstd-path <ZSTD_PATH> Specify the path of your zstd executable binary file. [default: zstd]
59
55
60
56
SUBCOMMANDS:
61
-
a Adds files to archive. Excludes base directory from names. (e.g. add /path/to/folder, you can always get
62
-
the "folder" in the root of the archive file, instead of /path/to/folder.)
63
-
help Prints this message or the help of the given subcommand(s)
64
-
x Extracts files with full path.
57
+
a Add files to archive. Excludes base directory from names. (e.g. add /path/to/folder, you can always get the "folder" in the root of the archive file, instead of /path/to/folder.)
58
+
help Print this message or the help of the given subcommand(s)
0 commit comments