The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

ar - create and maintain library archives

SYNOPSIS

     ar -d [-v] archive file ...
     ar -m [-v] archive file ...
     ar -m [-abiv] position archive file ...
     ar -p [-v] archive [file ...]
     ar -q [-cv] archive file ...
     ar -r [-cuv] archive file ...
     ar -r [-abciuv] position archive file ...
     ar -t [-v] archive [file ...]
     ar -x [-ouv] archive [file ...]

DESCRIPTION

The ar utility creates and maintains groups of files combined into an archive. Once an archive has been created, new files can be added and existing files can be extracted, deleted, or replaced.

Files are named in the archive by a single component, i.e., if a file referenced by a path containing a full pathname is archived it will be named by the last component of that path. When matching paths listed on the command line against file names stored in the archive, only the last component of the path will be compared.

If multiple files in the archive have the same name, and paths are listed on the command line to ``select'' archive files for an operation, only the first file with a matching name will be selected.

The normal use of ar is for the creation and maintenance of libraries suitable for use with the loader (see ld(1)) although it is not restricted to this purpose.

OPTIONS

ar accepts the following options:

-a

A positioning modifier used with the options -r and -m. The files are entered or moved after the archive member position, which must be specified.

-b

A positioning modifier used with the options -r and -m. The files are entered or moved before the archive member position, which must be specified.

-c

Whenever an archive is created, an informational message to that effect is written to standard error. If the -c option is specified, ar creates the archive silently.

-d

Delete the specified archive files.

-i

Identical to the -b option.

-m

Move the specified archive files within the archive. If one of the options -a, -b or -i is specified, the files are moved before or after the position file in the archive. If none of those options are specified, the files are moved to the end of the archive.

-o

Set the access and modification times of extracted files to the modification time of the file when it was entered into the archive. This will fail if the user is not the owner of the extracted file or the super-user.

-p

Write the contents of the specified archive files to the standard output. If no files are specified, the contents of all the files in the archive are written in the order they appear in the archive.

-q

(Quickly) append the specified files to the archive. If the archive does not exist a new archive file is created. Much faster than the -r option, when creating a large archive piece-by-piece, as no checking is done to see if the files already exist in the archive.

-r

Replace or add the specified files to the archive. If the archive does not exist a new archive file is created. Files that replace existing files do not change the order of the files with- in the archive. New files are appended to the archive unless one of the options -a, -b or -i is specified.

-t

List the specified files in the order in which they appear in the archive, each on a separate line. If no files are specified, all files in the archive are listed.

-u

Update files. When used with the -r option, files in the archive will be replaced only if the disk file has a newer modification time than the file in the archive. When used with the -x option, files in the archive will be extracted only if the archive file has a newer modification time than the file on disk.

-v

Provide verbose output. When used with the -d, -m, -q or -x op- tions, ar gives a file-by-file description of the archive modifi- cation. This description consists of three, white-space separat- ed fields: the option letter, a dash (``-'') and the file name. When used with the -r option, ar displays the description as above, but the initial letter is an ``a'' if the file is added to the archive and an ``r'' if the file replaces a file already in the archive.

When used with the -p option, the name of each printed file, enclosed in less-than (``<'') and greater-than (``>'') characters, is written to the standard output before the contents of the file; it is preceded by a single newline character, and followed by two newline characters.

When used with the -t option, ar displays an ``ls -l'' style listing of information about the members of the archive. This listing consists of eight, white-space separated fields: the file permissions, the decimal user and group ID's, separated by a single slash (``/''), the file size (in bytes), the file modification time (in the date(1) format ``%b %e %H:%M %Y''), and the name of the file.

-x

Extract the specified archive members into the files named by the command line arguments. If no members are specified, all the owner and group will be unchanged. The file access and modifica- tion times are the time of the extraction (but see the -o op- tion). The file permissions will be set to those of the file when it was entered into the archive; this will fail if the user is not the owner of the extracted file or the super-user.

ar exits 0 on success, and >0 if an error occurs.

ENVIRONMENT

The working of ar is not influenced by any environment variables.

BUGS

ar uses POSIX::strftime(), which isn't part of the basic distribution. The entire archive is loaded into memory, which could be slow or exhaust memory. The "-tv" option does an "ls -l"-style output, but the interpretation of the mode bits is probably not portable. ar doesn't check for bogus minor options that don't make sense with a major option -- they're just ignored.

COPYRIGHT and LICENSE

This program is copyright by dkulp 1999.

This program is free and open software. You may use, copy, modify, distribute and sell this program (and any modified variants) in any way you wish, provided you do not restrict others to do the same.