From 64c22e6be04ade1d94e10703a01fea620f13e218 Mon Sep 17 00:00:00 2001 From: qorg11 Date: Fri, 25 Jun 2021 15:54:06 +0200 Subject: [PATCH] fixed typo --- rocks/computers/software/pax.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rocks/computers/software/pax.md b/rocks/computers/software/pax.md index 0d359eb..6636a4d 100644 --- a/rocks/computers/software/pax.md +++ b/rocks/computers/software/pax.md @@ -1,6 +1,6 @@ -# pax(1) is a well done tar(1) +# `pax(1)` is a well done `tar(1)` -pax(1) allows you to create .tar files in a UNIX way: +`pax(1)` allows you to create .tar files in a UNIX way: ~~~ # create a tar file of a directory @@ -15,9 +15,9 @@ pax -w directory | gzip > directory.tar.gz zcat directory.tar.gz | pax -r ~~~ -These are tar files, so they're compatible with tar(1) +These are tar files, so they're compatible with `tar(1)` -You can also use pax(1) in a cringe, non UNIX way: +You can also use `pax(1)` in a cringe, non UNIX way: ~~~