Fix typo.

[ci skip]
This commit is contained in:
Bastian Kleineidam 2014-06-26 19:48:21 +02:00
parent bfe9ab7625
commit 16361ba5f4
1 changed files with 7 additions and 1 deletions

View File

@ -29,16 +29,22 @@ Examples
```
# Extract several archives with different formats
patool extract archive.zip otherarchive.rar
# Test archive integrity
patool test --verbose dist.tar.gz
# List files stored in an archive
patool list package.deb
# Create a new archive
patool create --verbose /path/to/myfiles.zip file1.txt dir/
# Show differences between two archives
patool diff release1.0.tar.gz release2.0.zip
# Search for text insicde archives
# Search for text inside archives
patool search "def urlopen" python-3.3.tar.gz
# Repackage an archive in a different format
patool repack linux-2.6.33.tar.gz linux-2.6.33.tar.bz2
```