fixed typo

This commit is contained in:
qorg11 2021-06-25 15:54:06 +02:00
parent ee1f7f46f3
commit 64c22e6be0
No known key found for this signature in database
GPG Key ID: 343FC20A4ACA62B9
1 changed files with 4 additions and 4 deletions

View File

@ -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:
~~~