summaryrefslogtreecommitdiff
path: root/how_to_archive_with_posix_tar_cpio_and_pax.html
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-01-26 18:52:41 +0100
committerAki <please@ignore.pl>2022-01-26 18:52:41 +0100
commitcce93b009944027513ae1bf84a83878d37c15ee9 (patch)
treebebacf04564d828e1daf60d9256887305de6ee22 /how_to_archive_with_posix_tar_cpio_and_pax.html
parent2abdaf04d0a6576172ce865979273476dbe47c2c (diff)
downloadignore.pl-cce93b009944027513ae1bf84a83878d37c15ee9.zip
ignore.pl-cce93b009944027513ae1bf84a83878d37c15ee9.tar.gz
ignore.pl-cce93b009944027513ae1bf84a83878d37c15ee9.tar.bz2
Updates to archival guide and renamed yesterday's article
Diffstat (limited to 'how_to_archive_with_posix_tar_cpio_and_pax.html')
-rw-r--r--how_to_archive_with_posix_tar_cpio_and_pax.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/how_to_archive_with_posix_tar_cpio_and_pax.html b/how_to_archive_with_posix_tar_cpio_and_pax.html
index 28c3878..09d1512 100644
--- a/how_to_archive_with_posix_tar_cpio_and_pax.html
+++ b/how_to_archive_with_posix_tar_cpio_and_pax.html
@@ -30,7 +30,7 @@ the exact same order, with tar being at 8th place overall, cpio at 52nd, and pax
least popular one, so I'll explain shortly how to use each of them in your usual Linux distribution while keeping in
mind what POSIX had to tell us back in the day.
-<h2>tar</h2>
+<h2>How to Archive With POSIX tar utility</h2>
<p>Like I've already mentioned tarballs are the most popular. Not only that, they are commonly described as the easiest
to use, although the interface is something that you can find jokes about. All operations on tarballs are handled via
single tar utility.</p>
@@ -52,7 +52,7 @@ $ tar cf ../archive.tar a_file a_directory
include in the archive)
<dt><code>a_file a_directory</code><dd>Files to include in the archives
</dl>
-<p>Now that you have an archive, you can see it's content:</p>
+<p>Now that you have an archive, you can see its content:</p>
<pre>
$ tar tf ../archive.tar
a_file
@@ -77,7 +77,7 @@ default behaviour if no archive file is provided at all.
and <code>u</code> that first tries to update the file in archive if it exists and if it doesn't then it adds it. Note,
that the usual compression options are not available in POSIX, they are an extension.
-<h2>cpio</h2>
+<h2>How To Archive With POSIX cpio utility</h2>
<p>Heading off from the usual routes we encounter cpio. It's a more frequent sight than pax, but it still is quite niche
compared to tar's omnipresence. Frankly, I like this one the most because of the way it handles input of file lists.
Sadly, this also makes it slightly bothersome to use.
@@ -140,7 +140,7 @@ $ ls ../destination
a_directory a_file
</pre>
-<h2>pax</h2>
+<h2>How to Archive With POSIX pax utility</h2>
<p>Finally, at the destination! This one lives up to the name of this post as it's still part of POSIX. The fun part is
that you probably don't even have it installed, but don't worry, I didn't have it until like two days ago. It truly
feels like a compromise forced on you and your siblings by your parents. Jokes aside, I actually started to like it,