diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 1998-09-23 04:32:40 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 1998-09-23 04:32:40 +0000 |
commit | a2d8aa4124f4856d7675a1cd268dc5a1f1e22350 (patch) | |
tree | 14844c4c8389307d49f87dc4e204b8e859bcbc9c /usr.bin/ar | |
parent | b7253ab25580c3ade3e0f9b14e52111cda23a6a4 (diff) |
usr.bin/ man page repairs, a - e
Diffstat (limited to 'usr.bin/ar')
-rw-r--r-- | usr.bin/ar/ar.1 | 18 | ||||
-rw-r--r-- | usr.bin/ar/ar.5 | 12 |
2 files changed, 15 insertions, 15 deletions
diff --git a/usr.bin/ar/ar.1 b/usr.bin/ar/ar.1 index 6c2b91916ad..0ec76b3ee4b 100644 --- a/usr.bin/ar/ar.1 +++ b/usr.bin/ar/ar.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ar.1,v 1.3 1997/08/19 07:23:13 denny Exp $ +.\" $OpenBSD: ar.1,v 1.4 1998/09/23 04:32:34 aaron Exp $ .\" $NetBSD: ar.1,v 1.7 1995/08/18 15:05:11 pk Exp $ .\" .\" Copyright (c) 1990, 1993 @@ -91,7 +91,7 @@ Once an archive has been created, new files can be added and existing files can be extracted, deleted, or replaced. .Pp Files are named in the archive by a single component, i.e., if a file -referenced by a path containing a slash (``/'') is archived it will be +referenced by a path containing a slash (`/') 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. @@ -195,7 +195,7 @@ historic archiver and loader implementations were unable to handle names that used the entire space. This means that file names that are not unique in their first fifteen characters can subsequently be confused. -A warning message is printed to the standard error output if any file +A warning message is printed to the standard error if any file names are truncated. (See .Xr ar 5 @@ -228,7 +228,7 @@ options, .Nm ar gives a file-by-file description of the archive modification. This description consists of three, white-space separated fields: the -option letter, a dash (``-'') and the file name. +option letter, a dash (`-') and the file name. When used with the .Fl r option, @@ -242,8 +242,8 @@ When used with the option, the name of each printed file is written to the standard output before the contents of the file, preceded by a single newline character, and -followed by two newline characters, enclosed in less-than (``<'') and -greater-than (``>'') characters. +followed by two newline characters, enclosed in less-than (`<') and +greater-than (`>') characters. .Pp When used with the .Fl t @@ -254,7 +254,7 @@ the archive. This listing consists of eight, white-space separated fields: the file permissions (see .Xr strmode 3 ), -the decimal user and group ID's, separated by a single slash (``/''), +the decimal user and group ID's, separated by a single slash (`/'), the file size (in bytes), the file modification time (in the .Xr date 1 format ``%b %e %H:%M %Y''), and the name of the file. @@ -277,14 +277,14 @@ extracted file or the super-user. .Pp The .Nm ar -utility exits 0 on success, and >0 if an error occurs. +utility exits 0 on success or >0 if an error occurred. .Sh ENVIRONMENT .Bl -tag -width indent -compact .It Ev TMPDIR The pathname of the directory to use when creating temporary files. .El .Sh FILES -.Bl -tag -width indent -compact +.Bl -tag -width ar.XXXXXX -compact .It Pa /tmp default temporary file directory .It Pa ar.XXXXXX diff --git a/usr.bin/ar/ar.5 b/usr.bin/ar/ar.5 index 15fde759c7b..100c674c67f 100644 --- a/usr.bin/ar/ar.5 +++ b/usr.bin/ar/ar.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ar.5,v 1.3 1998/06/15 17:56:06 mickey Exp $ +.\" $OpenBSD: ar.5,v 1.4 1998/09/23 04:32:34 aaron Exp $ .\" $NetBSD: ar.5,v 1.2 1995/03/25 06:39:38 glass Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 @@ -63,7 +63,7 @@ The header is made up of six variable length fields, followed by a two character trailer. The fields are the object name (16 characters), the file last modification -time (12 characters), the user and group id's (each 6 characters), the file +time (12 characters), the user and group IDs (each 6 characters), the file mode (8 characters) and the file size (10 characters). All numeric fields are in decimal, except for the file mode which is in octal. @@ -74,7 +74,7 @@ field, i.e., .Dv CUT seconds since the epoch. -The user and group id's are the file +The user and group IDs are the file .Fa st_uid and .Fa st_gid @@ -103,7 +103,7 @@ If any fields are their particular maximum number of characters in length, there will be no separation between the fields. .Pp Objects in the archive are always an even number of bytes long; files -which are an odd number of bytes long are padded with a newline (``\en'') +which are an odd number of bytes long are padded with a newline (`\en') character, although the size in the header does not reflect this. .Sh SEE ALSO .Xr ar 1 , @@ -117,7 +117,7 @@ type int). These archives were almost certainly created on a 16-bit machine, and contain headers made up of five fields. The fields are the object name (8 characters), the file last modification -time (type long), the user id (type char), the file mode (type char) and +time (type long), the user ID (type char), the file mode (type char) and the file size (type unsigned int). Files were padded to an even number of bytes. .Pp @@ -126,7 +126,7 @@ type int). These archives may have been created on either 16 or 32-bit machines, and contain headers made up of six fields. The fields are the object name (14 characters), the file last modification -time (type long), the user and group id's (each type char), the file mode +time (type long), the user and group IDs (each type char), the file mode (type int) and the file size (type long). Files were padded to an even number of bytes. For more information on converting from this format see |