1PTAR(1) User Contributed Perl Documentation PTAR(1)
2
3
4
6 ptar - a tar-like program written in perl
7
9 ptar is a small, tar look-alike program that uses the perl module
10 Archive::Tar to extract, create and list tar archives.
11
13 ptar -c [-v] [-z] [-C] [-f ARCHIVE_FILE | -] FILE FILE ...
14 ptar -c [-v] [-z] [-C] [-T index | -] [-f ARCHIVE_FILE | -]
15 ptar -x [-v] [-z] [-f ARCHIVE_FILE | -]
16 ptar -t [-z] [-f ARCHIVE_FILE | -]
17 ptar -h
18
20 c Create ARCHIVE_FILE or STDOUT (-) from FILE
21 x Extract from ARCHIVE_FILE or STDIN (-)
22 t List the contents of ARCHIVE_FILE or STDIN (-)
23 f Name of the ARCHIVE_FILE to use. Default is './default.tar'
24 z Read/Write zlib compressed ARCHIVE_FILE (not always available)
25 v Print filenames as they are added or extracted from ARCHIVE_FILE
26 h Prints this help message
27 C CPAN mode - drop 022 from permissions
28 T get names to create from file
29
31 tar(1), Archive::Tar.
32
33
34
35perl v5.34.0 2021-08-02 PTAR(1)