1PTARDIFF(1) Perl Programmers Reference Guide PTARDIFF(1)
2
3
4
6 ptardiff - program that diffs an extracted archive against an
7 unextracted one
8
10 ptardiff is a small program that diffs an extracted archive
11 against an unextracted one, using the perl module Archive::Tar.
12
13 This effectively lets you view changes made to an archives contents.
14
15 Provide the progam with an ARCHIVE_FILE and it will look up all
16 the files with in the archive, scan the current working directory
17 for a file with the name and diff it against the contents of the
18 archive.
19
21 ptardiff ARCHIVE_FILE
22 ptardiff -h
23
24 $ tar -xzf Acme-Buffy-1.3.tar.gz
25 $ vi Acme-Buffy-1.3/README
26 [...]
27 $ ptardiff Acme-Buffy-1.3.tar.gz > README.patch
28
30 h Prints this help message
31
33 tar(1), Archive::Tar.
34
35
36
37perl v5.10.1 2017-03-22 PTARDIFF(1)