diff options
author | David Woodfall <dave@dawoodfall.net> | 2010-05-11 00:23:34 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-16 22:24:23 -0500 |
commit | e3e22ec5df8d4eac6395f969e84dd54ed73f2421 (patch) | |
tree | 9b6fc14140c81b0440140f83aa3121127eef90ed /system/atool/README | |
parent | db9a0a1a210d0874b5b84364d3cdaad2cd24a776 (diff) | |
download | slackbuilds-e3e22ec5df8d4eac6395f969e84dd54ed73f2421.tar.gz |
system/atool: Added (an archive manager script)
Diffstat (limited to 'system/atool/README')
-rw-r--r-- | system/atool/README | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/system/atool/README b/system/atool/README new file mode 100644 index 0000000000..183ea20ea1 --- /dev/null +++ b/system/atool/README @@ -0,0 +1,21 @@ +atool is a script for managing file archives of various types +(tar, tar+gzip, zip, etcetera). + +The main command is aunpack which extracts files from an archive. +Did you ever extract files from an archive, not checking whether the +files were located in a subdirectory or in the top directory of the +archive, resulting in files scattered all over the place? aunpack +overcomes this problem by first extracting to a new directory. If +there was only a single file in the archive, that file is moved to +the original directory. aunpack also prevents local files from being +overwritten by mistake. + +The other commands provided are apack (to create archives), als (to +list files in archives), and acat (to extract files to standard out). +As atool invokes external programs to handle the archives, not all +commands may be supported for a certain type of archives. + +atool identifies archives by their file extension. Sometimes this is +not possible - for instance rar archives usually have varying numeric +file extensions. In those cases when atool can't identify the format, +file is used instead. (atool can be configured not to use file.) |