View | Details | Raw Unified | Return to bug 260523
Collapse All | Expand All

(-)b/usr.bin/ar/ar.1 (-4 / +10 lines)
Lines 222-229 and Link Here
222
.Fl U
222
.Fl U
223
options are specified on the command line, the final one takes precedence.
223
options are specified on the command line, the final one takes precedence.
224
.It Fl f
224
.It Fl f
225
Synonymous with option
225
Use only the first fifteen characters of the archive member name or
226
.Fl T .
226
command line file name argument when naming archive members.
227
.It Fl i Ar member-before
227
.It Fl i Ar member-before
228
Synonymous with option
228
Synonymous with option
229
.Fl b .
229
.Fl b .
Lines 314-321 List the files specified by arguments Link Here
314
in the order in which they appear in the archive, one per line.
314
in the order in which they appear in the archive, one per line.
315
If no files are specified, all files in the archive are listed.
315
If no files are specified, all files in the archive are listed.
316
.It Fl T
316
.It Fl T
317
Use only the first fifteen characters of the archive member name or
317
Not supported.
318
command line file name argument when naming archive members.
318
In earlier versions of
319
.Nm .
320
it was an alias for
321
.Fl f .
322
In other implementations of
323
.Nm
324
it creates a "thin" archive.
319
.It Fl u
325
.It Fl u
320
Conditionally update the archive or extract members.
326
Conditionally update the archive or extract members.
321
When used with the
327
When used with the
(-)b/usr.bin/ar/ar.c (-1 / +4 lines)
Lines 66-71 __FBSDID("$FreeBSD$"); Link Here
66
#include <sys/queue.h>
66
#include <sys/queue.h>
67
#include <sys/types.h>
67
#include <sys/types.h>
68
#include <archive.h>
68
#include <archive.h>
69
#include <err.h>
69
#include <errno.h>
70
#include <errno.h>
70
#include <getopt.h>
71
#include <getopt.h>
71
#include <libgen.h>
72
#include <libgen.h>
Lines 193-199 main(int argc, char **argv) Link Here
193
			Uflag = 0;
194
			Uflag = 0;
194
			break;
195
			break;
195
		case 'f':
196
		case 'f':
196
		case 'T':
197
			bsdar->options |= AR_TR;
197
			bsdar->options |= AR_TR;
198
			break;
198
			break;
199
		case 'j':
199
		case 'j':
Lines 226-231 main(int argc, char **argv) Link Here
226
		case 's':
226
		case 's':
227
			bsdar->options |= AR_S;
227
			bsdar->options |= AR_S;
228
			break;
228
			break;
229
		case 'T':
230
			errx(1, "-T option is not supported");
231
			break;
229
		case 't':
232
		case 't':
230
			set_mode(bsdar, opt);
233
			set_mode(bsdar, opt);
231
			break;
234
			break;

Return to bug 260523