diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-02 19:05:49 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-02 19:05:49 (GMT) |
commit | dcb9077a7cfe8a77e577909a03a4df93e3383000 (patch) | |
tree | 186eaf36c137f9c44d42cb9bbd84eaadb101386d /Doc | |
parent | d8d9da04b79a2be640af6bbd0b27d625e77806ae (diff) | |
parent | 72b34439bc228a84d150533a04eac17822baf832 (diff) | |
download | cpython-dcb9077a7cfe8a77e577909a03a4df93e3383000.zip cpython-dcb9077a7cfe8a77e577909a03a4df93e3383000.tar.gz cpython-dcb9077a7cfe8a77e577909a03a4df93e3383000.tar.bz2 |
Fixed hyperlinks for tarfile CLI options.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tarfile.rst | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst index 5b95ef3..be3a594 100644 --- a/Doc/library/tarfile.rst +++ b/Doc/library/tarfile.rst @@ -644,13 +644,14 @@ A :class:`TarInfo` object also provides some convenient query methods: .. _tarfile-commandline: +.. program:: tarfile -Command Line Interface +Command-Line Interface ---------------------- .. versionadded:: 3.4 -The :mod:`tarfile` module provides a simple command line interface to interact +The :mod:`tarfile` module provides a simple command-line interface to interact with tar archives. If you want to create a new tar archive, specify its name after the :option:`-c` @@ -687,7 +688,7 @@ For a list of the files in a tar archive, use the :option:`-l` option: $ python -m tarfile -l monty.tar -Command line options +Command-line options ~~~~~~~~~~~~~~~~~~~~ .. cmdoption:: -l <tarfile> @@ -695,8 +696,8 @@ Command line options List files in a tarfile. -.. cmdoption:: -c <tarfile> <source1> <sourceN> - --create <tarfile> <source1> <sourceN> +.. cmdoption:: -c <tarfile> <source1> ... <sourceN> + --create <tarfile> <source1> ... <sourceN> Create tarfile from source files. @@ -712,7 +713,7 @@ Command line options .. cmdoption:: -v, --verbose - Verbose output + Verbose output. .. _tar-examples: |