diff options
author | aisha <aisha@cvs.openbsd.org> | 2023-08-03 18:17:55 +0000 |
---|---|---|
committer | aisha <aisha@cvs.openbsd.org> | 2023-08-03 18:17:55 +0000 |
commit | 5f8b53a32e5b2613b13188bf85b18894f0cbea7e (patch) | |
tree | 3c75767d718a1ea33f5b708112260d22d2451a59 /bin/pax | |
parent | d70443094071c58ded8042f70af6afe9d345008e (diff) |
add extract example and reorder flags on other examples
comments sthen@ and Peter J. Philipp <pjp AT delphinusdns DOT org>
ok jmc@
Diffstat (limited to 'bin/pax')
-rw-r--r-- | bin/pax/tar.1 | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/bin/pax/tar.1 b/bin/pax/tar.1 index 0bdb0e2652a..5b37487ba34 100644 --- a/bin/pax/tar.1 +++ b/bin/pax/tar.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tar.1,v 1.64 2022/03/31 17:27:14 naddy Exp $ +.\" $OpenBSD: tar.1,v 1.65 2023/08/03 18:17:54 aisha Exp $ .\" .\" Copyright (c) 1996 SigmaSoft, Th. Lockert .\" All rights reserved. @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: March 31 2022 $ +.Dd $Mdocdate: August 3 2023 $ .Dt TAR 1 .Os .Sh NAME @@ -331,16 +331,16 @@ and .Pp .Dl $ tar c bonvole sekve .Pp -Output a +Create a .Xr gzip 1 -compressed archive containing the files +compressed archive, called +.Pa foriru.tar.gz , +containing the files .Pa bonvole and -.Pa sekve -to a file called -.Pa foriru.tar.gz : +.Pa sekve : .Pp -.Dl $ tar zcf foriru.tar.gz bonvole sekve +.Dl $ tar czf foriru.tar.gz bonvole sekve .Pp Verbosely create an archive, called .Pa backup.tar.gz , @@ -349,7 +349,7 @@ of all files matching the shell function .Pa *.c : .Pp -.Dl $ tar zcvf backup.tar.gz *.c +.Dl $ tar cvzf backup.tar.gz *.c .Pp Verbosely list, but do not extract, all files ending in .Pa .jpeg @@ -359,6 +359,13 @@ Note that the glob pattern has been quoted to avoid expansion by the shell: .Pp .Dl $ tar tvzf backup.tar.gz '*.jpeg' .Pp +Verbosely extract an archive, called +.Pa foo.tar.gz , +to the directory +.Pa /var/foo : +.Pp +.Dl $ tar xvzf foo.tar.gz -C /var/foo +.Pp For more detailed examples, see .Xr pax 1 . .Sh DIAGNOSTICS |