AR.1
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:

OS Develop

Development Platform:

WINDOWS

  1. AR(1)                     Minix Programmer's Manual                      AR(1)
  2. NAME
  3.      ar, aal - archivers
  4. SYNOPSIS
  5.      ar [dmpqrtx][abciluv] [posname] archive [file ...]
  6.      aal [dpqrtx][clv] archive [file ...]
  7. EXAMPLES
  8.      ar r libc.a sort.s  # Replace sort.s in libc.a
  9.      ar rb a.s libc.a b.s
  10.                          # Insert b.s before a.s in libc.a
  11. DESCRIPTION
  12.      Ar allows groups of files to be put together into a single  archive.   It
  13.      is  normally  used for libraries of compiled procedures.  Aal is like ar,
  14.      but is to be used with the ACK compiler.  The following keys are allowed:
  15.         d: Delete. Ar will delete the named members.
  16.         m: Move named files. Ar expects a, b, or i to be specified.
  17.         p: Print the named files (list them on stdout)
  18.         q: Quickly append to the end of the archive file.
  19.         r: Replace (append when not in archive).
  20.         t: Print the archive's table of contents.
  21.         x: Extract
  22.      The keys may optionally concatencated with one or more of the following:
  23.         a: After posname
  24.         b: Before posname
  25.         c: Create  (suppresses creation message)
  26.         i: Before posname
  27.         l: Local temporary file for work instead of /tmp/ar.$$$$$
  28.         u: Replace only if dated later than member in archive
  29.         v: Verbose
  30. SEE ALSO
  31.      anm(1), asize(1), nm(1), size(1).
  32.                                                                              1