summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBartosz Kosiorek <bartosz.kosiorek@tomtom.com>2019-03-08 13:52:30 (GMT)
committerBartosz Kosiorek <bartosz.kosiorek@tomtom.com>2019-03-18 16:08:20 (GMT)
commitc7c6a4a2cc06fd22eeb1c545dba030eddf39363a (patch)
tree0e716d4891278ae6c0606efc6ca6b37b35dba6e8 /Help
parent7c47fd8cd1e7d9aae60412ce7544fdfa82c9e798 (diff)
downloadCMake-c7c6a4a2cc06fd22eeb1c545dba030eddf39363a.zip
CMake-c7c6a4a2cc06fd22eeb1c545dba030eddf39363a.tar.gz
CMake-c7c6a4a2cc06fd22eeb1c545dba030eddf39363a.tar.bz2
Help: Update 'tar' documentation with supported arguments
Diffstat (limited to 'Help')
-rw-r--r--Help/manual/cmake.1.rst15
1 files changed, 15 insertions, 0 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst
index a3c7834..db035c2 100644
--- a/Help/manual/cmake.1.rst
+++ b/Help/manual/cmake.1.rst
@@ -483,6 +483,21 @@ Available commands are:
``tar [cxt][vf][zjJ] file.tar [<options>] [--] [<file>...]``
Create or extract a tar or zip archive. Options are:
+ ``c``
+ Create a new archive containing the specified files.
+ If used, the <file> argument is mandatory.
+ ``x``
+ Extract to disk from the archive.
+ ``t``
+ List archive contents to stdout.
+ ``v``
+ Produce verbose output.
+ ``z``
+ Compress the resulting archive with gzip.
+ ``j``
+ Compress the resulting archive with bzip2.
+ ``J``
+ Compress the resulting archive with XZ.
``--``
Stop interpreting options and treat all remaining arguments
as file names even if they start in ``-``.