From 1aad72337597e3461eb3bcea2ae1c31a39959a6a Mon Sep 17 00:00:00 2001 From: LevyJ <74147554+Sponsoredby@users.noreply.github.com> Date: Sat, 2 Nov 2024 03:22:41 +0000 Subject: [PATCH] tar: update page (#14319) Update tar.md corrected the language used on 2 lines --- pages/common/tar.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/tar.md b/pages/common/tar.md index c1ee8d727d..6aa5781231 100644 --- a/pages/common/tar.md +++ b/pages/common/tar.md @@ -12,7 +12,7 @@ `tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}` -- [c]reate a g[z]ipped archive from a directory using relative paths: +- [c]reate a g[z]ipped (compressed) archive from a directory using relative paths: `tar czf {{path/to/target.tar.gz}} --directory={{path/to/directory}} .` @@ -24,7 +24,7 @@ `tar xf {{path/to/source.tar[.gz|.bz2|.xz]}} --directory={{path/to/directory}}` -- [c]reate a compressed archive and write it to a [f]ile, using the file extension to [a]utomatically determine the compression program: +- [c]reate an archive and write it to a [f]ile, using the file extension to [a]utomatically determine the compression program: `tar caf {{path/to/target.tar.xz}} {{path/to/file1 path/to/file2 ...}}`