From a2d0c9279dfd2a5e686ab36c0dad3ed1e4110071 Mon Sep 17 00:00:00 2001 From: "Jakob (Koby) Shimony" Date: Wed, 19 Jul 2023 14:58:25 +0200 Subject: [PATCH] fix typo in tar.md (#2020) * fix typo in tar.md * Fix indentation --- tar.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tar.md b/tar.md index 2c1d27a82..f2894cd09 100644 --- a/tar.md +++ b/tar.md @@ -36,11 +36,11 @@ tar -zu archive.tar.gz -C /target/file ### Common options -| Option | Description | -|--------|--------------------------------------------------------------------------| -| `z` | compress with gzip | -| `c` | create an archive | -| `u` | append files which are newer than the corresponding copy ibn the archive | -| `f` | filename of the archive | -| `v` | verbose, display what is inflated or deflated | -| `a` | unlike of `z`, determine compression based on file extension | +| Option | Description | +|--------|-------------------------------------------------------------------------| +| `z` | compress with gzip | +| `c` | create an archive | +| `u` | append files which are newer than the corresponding copy in the archive | +| `f` | filename of the archive | +| `v` | verbose, display what is inflated or deflated | +| `a` | unlike of `z`, determine compression based on file extension |