forked from libarchive/libarchive
-
Notifications
You must be signed in to change notification settings - Fork 0
ManualPages
amejia1 edited this page Feb 4, 2012
·
2 revisions
Directory of documentation included with the libarchive distribution.
The libarchive distribution includes full documentation in the form of Unix-style "man pages." These documents are included in the libarchive distribution in the following formats: BSD mdoc, Unix man, PDF, plain text, and HTML. In addition, they are available here for online browsing:
- bsdtar.1 - The bsdtar command-line program
- bsdcpio.1 - The bsdcpio command-line program
- libarchive.3 - An overview of libarchive (Also see the Examples, FormatDetection, and ZeroCopy articles.)
- libarchive_formats.5 - An overview of the formats supported by libarchive
- libarchive_changes.3 - Differences from past releases
- archive_entry.3 - The archive_entry API used to represent entries in archives
- archive_entry_acl.3 - Details of the ACL handling for archive entries (Also see the TarNFS4ACLs and TarPosix1eACLs articles.)
- archive_entry_linkify.3 - Details of the utility functions for detecting and managing hardlinked files
- archive_entry_paths.3 - Details of the pathname handling for archive entries
- archive_entry_perms.3 - Details of the permissions/mode storage used by archive entries
- archive_entry_stat.3 - Details of using `struct stat` with archive entries
- archive_entry_time.3 - Details of the time values that can appear in archive entries
-
archive_read.3 - The archive_read API used for reading from streaming archives
- archive_read_data.3 - Read archive entry payload
- archive_read_extract.3 - Recreate archive entries on disk
- archive_read_filter.3 - Configure a readable archive object with decompression filters
- archive_read_format.3 - Configure a readable archive object with an archive format
- archive_read_free.3 - Detach and deallocate a readable archive object
- archive_read_header.3 - Read entry metadata
- archive_read_new.3 - Allocate a readable archive object
- archive_read_open.3 - Attach a readable archive object to a data source (file, descriptor, memory ...)
- archive_read_set_options.3 - Configure filter or format driver behavior
- archive_read_disk.3 - The archive_read_disk API used for getting information about files (and other objects) from disk
- archive_util.3 - Miscellaneous libarchive utility functions
-
archive_write.3 - The archive_write API used to create streaming archives
- archive_write_blocksize.3 - Configure block sizes for a writable archive object
- archive_write_data.3 - Write archive entry payload
- archive_write_filter.3 - Configure a writable archive with compression filters
- archive_write_finish_entry.3 - Finalize a writable archive entry
- archive_write_format.3 - Configure a writable archive with an archive format
- archive_write_free.3 - Detach and deallocate a writable archive object
- archive_write_header.3 - Write entry metadata
- archive_write_new.3 - Allocate a writable archive object
- archive_write_open.3 - Attach a writable archive object to a data sink
- archive_write_set_options.3 - Configure filter or format driver behavior
- archive_write_disk.3 - The archive_write_disk API used to create files (and other objects) on disk
- tar.5 - The tar file format ("... best man page I have read in years." -- Russ Cox)
- mtree.5 - The mtree file format
- cpio.5 - The cpio file format
- libarchive_internals.3 - A brief survey of how libarchive works internally. (Also see the LibarchiveInternals article.)
The Wiki formatted pages here were generated automatically from the BSD mdoc format using the scripts in the trunk/doc directory. Any help in improving these scripts is greatly appreciated.
Maintainers: To update the Wiki manpages (assuming you have a checkout of the full source tree):
$ cd trunk/doc
$ /bin/sh update.sh
$ cp wiki/*.wiki ../../wiki
$ svn commit ../../wiki