2 * Copyright (c) 1992 Keith Muller.
3 * Copyright (c) 1992, 1993
4 * The Regents of the University of California. All rights reserved.
6 * This code is derived from software contributed to Berkeley by
7 * Keith Muller of the University of California, San Diego.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #define _POSIX_SOURCE 1
39 static char sccsid
[] = "@(#)options.c 8.2 (Berkeley) 4/18/94";
44 #include <sys/types.h>
53 #include <minix/paths.h>
55 #include <sys/types.h>
68 * Routines which handle command line options
71 static char flgch
[] = FLGCH
; /* list of all possible flags */
72 static OPLIST
*ophead
= NULL
; /* head for format specific options -x */
73 static OPLIST
*optail
= NULL
; /* option tail */
75 static int no_op(void);
76 static void printflg(unsigned int);
77 static int c_frmt(const void *, const void *);
78 static off_t
str_offt(char *);
79 static char *getline(FILE *fp
);
80 static void pax_options(int, char **);
81 static void pax_usage(void);
82 static void tar_options(int, char **);
83 static void tar_usage(void);
84 static void cpio_options(int, char **);
85 static void cpio_usage(void);
87 /* errors from getline */
88 #define GETLINE_FILE_CORRUPT 1
89 #define GETLINE_OUT_OF_MEM 2
90 static int getline_error
;
93 #define GZIP_CMD "gzip" /* command to run as gzip */
94 #define COMPRESS_CMD "compress" /* command to run as compress */
95 #define BZIP2_CMD "bzip2" /* command to run as gzip */
98 * Format specific routine table - MUST BE IN SORTED ORDER BY NAME
99 * (see pax.h for description of each function)
101 * name, blksz, hdsz, udev, hlk, blkagn, inhead, id, st_read,
102 * read, end_read, st_write, write, end_write, trail,
103 * rd_data, wr_data, options
107 /* 0: OLD BINARY CPIO */
108 {"bcpio", 5120, sizeof(HD_BCPIO
), 1, 0, 0, 1, bcpio_id
, cpio_strd
,
109 bcpio_rd
, bcpio_endrd
, cpio_stwr
, bcpio_wr
, cpio_endwr
, cpio_trail
,
110 NULL
, rd_wrfile
, wr_rdfile
, bad_opt
},
112 /* 1: OLD OCTAL CHARACTER CPIO */
113 {"cpio", 5120, sizeof(HD_CPIO
), 1, 0, 0, 1, cpio_id
, cpio_strd
,
114 cpio_rd
, cpio_endrd
, cpio_stwr
, cpio_wr
, cpio_endwr
, cpio_trail
,
115 NULL
, rd_wrfile
, wr_rdfile
, bad_opt
},
117 /* 2: SVR4 HEX CPIO */
118 {"sv4cpio", 5120, sizeof(HD_VCPIO
), 1, 0, 0, 1, vcpio_id
, cpio_strd
,
119 vcpio_rd
, vcpio_endrd
, cpio_stwr
, vcpio_wr
, cpio_endwr
, cpio_trail
,
120 NULL
, rd_wrfile
, wr_rdfile
, bad_opt
},
122 /* 3: SVR4 HEX CPIO WITH CRC */
123 {"sv4crc", 5120, sizeof(HD_VCPIO
), 1, 0, 0, 1, crc_id
, crc_strd
,
124 vcpio_rd
, vcpio_endrd
, crc_stwr
, vcpio_wr
, cpio_endwr
, cpio_trail
,
125 NULL
, rd_wrfile
, wr_rdfile
, bad_opt
},
128 {"tar", 10240, BLKMULT
, 0, 1, BLKMULT
, 0, tar_id
, no_op
,
129 tar_rd
, tar_endrd
, no_op
, tar_wr
, tar_endwr
, NULL
, tar_trail
,
130 rd_wrfile
, wr_rdfile
, tar_opt
},
133 {"ustar", 10240, BLKMULT
, 0, 1, BLKMULT
, 0, ustar_id
, ustar_strd
,
134 ustar_rd
, tar_endrd
, ustar_stwr
, ustar_wr
, tar_endwr
, NULL
, tar_trail
,
135 rd_wrfile
, wr_rdfile
, bad_opt
},
137 #define F_OCPIO 0 /* format when called as cpio -6 */
138 #define F_ACPIO 1 /* format when called as cpio -c */
139 #define F_CPIO 3 /* format when called as cpio */
140 #define F_OTAR 4 /* format when called as tar -o */
141 #define F_TAR 5 /* format when called as tar */
142 #define DEFLT 5 /* default write format from list above */
145 * ford is the archive search order used by get_arc() to determine what kind
146 * of archive we are dealing with. This helps to properly id archive formats
147 * some formats may be subsets of others....
149 int ford
[] = {5, 4, 3, 2, 1, 0, -1 };
153 * figure out if we are pax, tar or cpio. Call the appropriate options
158 options(int argc
, char **argv
)
162 * Are we acting like pax, tar or cpio (based on argv[0])
164 if ((argv0
= strrchr(argv
[0], '/')) != NULL
)
169 if (strcmp(NM_TAR
, argv0
) == 0) {
170 tar_options(argc
, argv
);
173 else if (strcmp(NM_CPIO
, argv0
) == 0) {
174 cpio_options(argc
, argv
);
178 * assume pax as the default
181 pax_options(argc
, argv
);
187 * look at the user specified flags. set globals as required and check if
188 * the user specified a legal set of flags. If not, complain and exit
192 pax_options(int argc
, char **argv
)
196 unsigned int flg
= 0;
197 unsigned int bflg
= 0;
202 * process option flags
204 while ((c
=getopt(argc
,argv
,"ab:cdf:iklno:p:rs:tuvwx:zB:DE:G:HLPT:U:XYZ"))
218 if ((wrblksz
= (int)str_offt(optarg
)) <= 0) {
219 paxwarn(1, "Invalid block size %s", optarg
);
225 * inverse match on patterns
232 * match only dir on extract, not the subtree at dir
239 * filename where the archive is stored
246 * interactive file rename
253 * do not clobber files that exist
260 * try to link src to dest with copy (-rw)
267 * select first match for a pattern only
274 * pass format specific options
277 if (opt_add(optarg
) < 0)
282 * specify file characteristic options
284 for (pt
= optarg
; *pt
!= '\0'; ++pt
) {
288 * do not preserve access time
294 * preserve user id, group id, file
295 * mode, access/modification times
304 * do not preserve modification time
316 * preserver file mode bits
321 paxwarn(1, "Invalid -p string: %c", *pt
);
336 * file name substitution name pattern
338 if (rep_add(optarg
) < 0) {
346 * preserve access time on file system nodes we read
353 * ignore those older files
360 * verbose operation mode
373 * specify an archive format on write
376 if ((frmt
= (FSUB
*)bsearch((void *)&tmp
, (void *)fsub
,
377 sizeof(fsub
)/sizeof(FSUB
), sizeof(FSUB
), c_frmt
)) != NULL
) {
381 paxwarn(1, "Unknown -x format: %s", optarg
);
382 (void)fputs("pax: Known -x formats are:", stderr
);
383 for (i
= 0; i
< (sizeof(fsub
)/sizeof(FSUB
)); ++i
)
384 (void)fprintf(stderr
, " %s", fsub
[i
].name
);
385 (void)fputs("\n\n", stderr
);
390 * use gzip. Non standard option.
392 gzip_program
= GZIP_CMD
;
396 * non-standard option on number of bytes written on a
397 * single archive volume.
399 if ((wrlimit
= str_offt(optarg
)) <= 0) {
400 paxwarn(1, "Invalid write limit %s", optarg
);
403 if (wrlimit
% BLKMULT
) {
404 paxwarn(1, "Write limit is not a %d byte multiple",
412 * On extraction check file inode change time before the
413 * modification of the file name. Non standard option.
420 * non-standard limit on read faults
421 * 0 indicates stop after first error, values
422 * indicate a limit, "NONE" try forever
425 if (strcmp(NONE
, optarg
) == 0)
427 else if ((maxflt
= atoi(optarg
)) < 0) {
428 paxwarn(1, "Error count value must be positive");
434 * non-standard option for selecting files within an
435 * archive by group (gid or name)
437 if (grp_add(optarg
) < 0) {
445 * follow command line symlinks only
459 * do NOT follow symlinks (default)
466 * non-standard option for selecting files within an
467 * archive by modification time range (lower,upper)
469 if (trng_add(optarg
) < 0) {
477 * non-standard option for selecting files within an
478 * archive by user (uid or name)
480 if (usr_add(optarg
) < 0) {
488 * do not pass over mount points in the file system
495 * On extraction check file inode change time after the
496 * modification of the file name. Non standard option.
503 * On extraction check modification time after the
504 * modification of the file name. Non standard option.
516 * figure out the operation mode of pax read,write,extract,copy,append
517 * or list. check that we have not been given a bogus set of flags
518 * for the operation mode.
524 } else if (ISEXTRACT(flg
)) {
527 } else if (ISARCHIVE(flg
)) {
530 } else if (ISAPPND(flg
)) {
533 } else if (ISCOPY(flg
)) {
544 * if we are writing (ARCHIVE) we use the default format if the user
545 * did not specify a format. when we write during an APPEND, we will
546 * adopt the format of the existing archive if none was supplied.
548 if (!(flg
& XF
) && (act
== ARCHIVE
))
549 frmt
= &(fsub
[DEFLT
]);
552 * process the args as they are interpreted by the operation mode
557 for (; optind
< argc
; optind
++)
558 if (pat_add(argv
[optind
], NULL
) < 0)
562 if (optind
>= argc
) {
563 paxwarn(0, "Destination directory was not supplied");
571 for (; optind
< argc
; optind
++)
572 if (ftree_add(argv
[optind
], 0) < 0)
575 * no read errors allowed on updates/append operation!
583 tar_set_action(int op
)
585 if (act
!= ERROR
&& act
!= op
)
592 * look at the user specified flags. set globals as required and check if
593 * the user specified a legal set of flags. If not, complain and exit
597 tar_options(int argc
, char **argv
)
603 int incfiles_max
= 0;
608 struct incfile
*incfiles
= NULL
;
611 * Set default values.
616 * process option flags
618 while ((c
= getoldopt(argc
, argv
,
619 "b:cef:hjmopqruts:vwxyzBC:HI:LOPXZ014578")) != -1) {
623 * specify blocksize in 512-byte blocks
625 if ((wrblksz
= (int)str_offt(optarg
)) <= 0) {
626 paxwarn(1, "Invalid block size %s", optarg
);
629 wrblksz
*= 512; /* XXX - check for int oflow */
635 tar_set_action(ARCHIVE
);
639 * stop after first error
645 * filename where the archive is stored
647 if ((optarg
[0] == '-') && (optarg
[1]== '\0')) {
667 * use bzip2. Non standard option.
669 gzip_program
= BZIP2_CMD
;
673 * do not preserve modification time
678 if (opt_add("write_opt=nodir") < 0)
685 * preserve uid/gid and file mode, regardless of umask
692 * select first match for a pattern only
699 * append to the archive
701 tar_set_action(APPND
);
705 * file name substitution name pattern
707 if (rep_add(optarg
) < 0) {
714 * list contents of the tape
716 tar_set_action(LIST
);
720 * verbose operation mode
726 * interactive file rename
732 * extract an archive, preserving mode,
733 * and mtime if possible.
735 tar_set_action(EXTRACT
);
740 * use gzip. Non standard option.
742 gzip_program
= GZIP_CMD
;
746 * Nothing to do here, this is pax default
754 * follow command line symlinks only
759 if (++nincfiles
> incfiles_max
) {
760 incfiles_max
= nincfiles
+ 3;
761 incfiles
= realloc(incfiles
,
762 sizeof(*incfiles
) * incfiles_max
);
763 if (incfiles
== NULL
) {
764 paxwarn(0, "Unable to allocate space "
769 incfiles
[nincfiles
- 1].file
= optarg
;
770 incfiles
[nincfiles
- 1].dir
= chdname
;
780 * do not remove leading '/' from pathnames
786 * do not pass over mount points in the file system
794 gzip_program
= COMPRESS_CMD
;
822 /* Tar requires an action. */
826 /* Traditional tar behaviour (pax uses stderr unless in list mode) */
827 if (fstdin
== 1 && act
== ARCHIVE
)
832 /* Traditional tar behaviour (pax wants to read file list from stdin) */
833 if ((act
== ARCHIVE
|| act
== APPND
) && argc
== 0 && nincfiles
== 0)
837 * if we are writing (ARCHIVE) specify tar, otherwise run like pax
838 * (unless -o specified)
840 if (act
== ARCHIVE
|| act
== APPND
)
841 frmt
= &(fsub
[Oflag
? F_OTAR
: F_TAR
]);
843 paxwarn(1, "The -O/-o options are only valid when writing an archive");
844 tar_usage(); /* only valid when writing */
848 * process the args as they are interpreted by the operation mode
856 char *file
, *dir
= NULL
;
858 while (nincfiles
|| *argv
!= NULL
) {
860 * If we queued up any include files,
861 * pull them in now. Otherwise, check
862 * for -I and -C positional flags.
863 * Anything else must be a file to
867 file
= incfiles
->file
;
871 } else if (strcmp(*argv
, "-I") == 0) {
882 if (strcmp(file
, "-") == 0)
884 else if ((fp
= fopen(file
, "r")) == NULL
) {
885 paxwarn(1, "Unable to open file '%s' for read", file
);
888 while ((str
= getline(fp
)) != NULL
) {
889 if (pat_add(str
, dir
) < 0)
893 if (strcmp(file
, "-") != 0)
896 paxwarn(1, "Problem with file '%s'", file
);
899 } else if (strcmp(*argv
, "-C") == 0) {
903 } else if (pat_add(*argv
++, chdname
) < 0)
909 * if patterns were added, we are doing chdir()
910 * on a file-by-file basis, else, just one
911 * global chdir (if any) after opening input.
919 if (chdname
!= NULL
) { /* initial chdir() */
920 if (ftree_add(chdname
, 1) < 0)
924 while (nincfiles
|| *argv
!= NULL
) {
925 char *file
, *dir
= NULL
;
928 * If we queued up any include files, pull them in
929 * now. Otherwise, check for -I and -C positional
930 * flags. Anything else must be a file to include
934 file
= incfiles
->file
;
938 } else if (strcmp(*argv
, "-I") == 0) {
949 /* Set directory if needed */
951 if (ftree_add(dir
, 1) < 0)
955 if (strcmp(file
, "-") == 0)
957 else if ((fp
= fopen(file
, "r")) == NULL
) {
958 paxwarn(1, "Unable to open file '%s' for read", file
);
961 while ((str
= getline(fp
)) != NULL
) {
962 if (ftree_add(str
, 0) < 0)
965 if (strcmp(file
, "-") != 0)
968 paxwarn(1, "Problem with file '%s'",
972 } else if (strcmp(*argv
, "-C") == 0) {
975 if (ftree_add(*argv
++, 1) < 0)
977 } else if (ftree_add(*argv
++, 0) < 0)
981 * no read errors allowed on updates/append operation!
986 if (!fstdin
&& ((arcname
== NULL
) || (*arcname
== '\0'))) {
987 arcname
= getenv("TAPE");
988 if ((arcname
== NULL
) || (*arcname
== '\0'))
989 arcname
= _PATH_DEFTAPE
;
1003 slash
+= strspn(slash
, "/");
1004 slash
+= strcspn(slash
, "/");
1006 done
= (*slash
== '\0');
1009 if (stat(path
, &sb
)) {
1010 if (errno
!= ENOENT
|| mkdir(path
, 0777)) {
1011 paxwarn(1, "%s", path
);
1014 } else if (!S_ISDIR(sb
.st_mode
)) {
1015 syswarn(1, ENOTDIR
, "%s", path
);
1027 * look at the user specified flags. set globals as required and check if
1028 * the user specified a legal set of flags. If not, complain and exit
1032 cpio_options(int argc
, char **argv
)
1048 while ((c
=getopt(argc
,argv
,"abcdfiklmoprstuvzABC:E:F:H:I:LO:SZ6")) != -1)
1052 * preserve access time on files read
1058 * swap bytes and half-words when reading data
1065 frmt
= &(fsub
[F_ACPIO
]);
1069 * create directories as needed
1075 * invert meaning of pattern list
1081 * restore an archive
1089 * use links instead of copies when possible
1095 * preserve modification time
1104 frmt
= &(fsub
[F_CPIO
]);
1114 * interactively rename files
1120 * swap bytes after reading data
1125 * list contents of archive
1132 * replace newer files
1138 * verbose operation mode
1144 * use gzip. Non standard option.
1146 gzip_program
= GZIP_CMD
;
1156 * Use 5120 byte block size
1162 * set block size in bytes
1164 wrblksz
= atoi(optarg
);
1168 * file with patterns to extract or list
1170 if ((fp
= fopen(optarg
, "r")) == NULL
) {
1171 paxwarn(1, "Unable to open file '%s' for read", optarg
);
1174 while ((str
= getline(fp
)) != NULL
) {
1178 if (getline_error
) {
1179 paxwarn(1, "Problem with file '%s'", optarg
);
1187 * filename where the archive is stored
1189 if ((optarg
[0] == '-') && (optarg
[1]== '\0')) {
1191 * treat a - as stdin
1200 * specify an archive format on write
1203 if ((frmt
= (FSUB
*)bsearch((void *)&tmp
, (void *)fsub
,
1204 sizeof(fsub
)/sizeof(FSUB
), sizeof(FSUB
), c_frmt
)) != NULL
)
1206 paxwarn(1, "Unknown -H format: %s", optarg
);
1207 (void)fputs("cpio: Known -H formats are:", stderr
);
1208 for (i
= 0; i
< (sizeof(fsub
)/sizeof(FSUB
)); ++i
)
1209 (void)fprintf(stderr
, " %s", fsub
[i
].name
);
1210 (void)fputs("\n\n", stderr
);
1215 * follow symbolic links
1221 * swap halfwords after reading data
1226 * use compress. Non standard option.
1228 gzip_program
= COMPRESS_CMD
;
1232 * process Version 6 cpio format
1234 frmt
= &(fsub
[F_OCPIO
]);
1245 * process the args as they are interpreted by the operation mode
1250 while (*argv
!= NULL
)
1251 if (pat_add(*argv
++, NULL
) < 0)
1255 if (*argv
== NULL
) {
1256 paxwarn(0, "Destination directory was not supplied");
1260 if (mkpath(dirptr
) < 0)
1270 * no read errors allowed on updates/append operation!
1273 while ((str
= getline(stdin
)) != NULL
) {
1276 if (getline_error
) {
1277 paxwarn(1, "Problem while reading stdin");
1289 * print out those invalid flag sets found to the user
1293 printflg(unsigned int flg
)
1298 (void)fprintf(stderr
,"%s: Invalid combination of options:", argv0
);
1299 while ((nxt
= ffs(flg
)) != 0) {
1302 (void)fprintf(stderr
, " -%c", flgch
[pos
-1]);
1304 (void)putc('\n', stderr
);
1309 * comparison routine used by bsearch to find the format specified
1314 c_frmt(const void *a
, const void *b
)
1316 return(strcmp(((const FSUB
*)a
)->name
, ((const FSUB
*)b
)->name
));
1321 * called by format specific options routines to get each format specific
1322 * flag and value specified with -o
1324 * pointer to next OPLIST entry or NULL (end of list).
1332 if ((opt
= ophead
) != NULL
)
1333 ophead
= ophead
->fow
;
1339 * generic routine used to complain about a format specific options
1340 * when the format does not support options.
1351 * print all we were given
1353 paxwarn(1,"These format options are not supported");
1354 while ((opt
= opt_next()) != NULL
)
1355 (void)fprintf(stderr
, "\t%s = %s\n", opt
->name
, opt
->value
);
1362 * breaks the value supplied to -o into an option name and value. Options
1363 * are given to -o in the form -o name-value,name=value
1364 * multiple -o may be specified.
1366 * 0 if format in name=value format, -1 if -o is passed junk.
1370 opt_add(const char *str
)
1378 if ((str
== NULL
) || (*str
== '\0')) {
1379 paxwarn(0, "Invalid option name");
1382 if ((lstr
= strdup(str
)) == NULL
) {
1383 paxwarn(0, "Unable to allocate space for option list");
1386 frpt
= endpt
= lstr
;
1389 * break into name and values pieces and stuff each one into a
1390 * OPLIST structure. When we know the format, the format specific
1391 * option function will go through this list
1393 while ((frpt
!= NULL
) && (*frpt
!= '\0')) {
1394 if ((endpt
= strchr(frpt
, ',')) != NULL
)
1396 if ((pt
= strchr(frpt
, '=')) == NULL
) {
1397 paxwarn(0, "Invalid options format");
1401 if ((opt
= (OPLIST
*)malloc(sizeof(OPLIST
))) == NULL
) {
1402 paxwarn(0, "Unable to allocate space for option list");
1414 if (ophead
== NULL
) {
1415 optail
= ophead
= opt
;
1426 * Convert an expression of the following forms to an off_t > 0.
1427 * 1) A positive decimal number.
1428 * 2) A positive decimal number followed by a b (mult by 512).
1429 * 3) A positive decimal number followed by a k (mult by 1024).
1430 * 4) A positive decimal number followed by a m (mult by 512).
1431 * 5) A positive decimal number followed by a w (mult by sizeof int)
1432 * 6) Two or more positive decimal numbers (with/without k,b or w).
1433 * separated by x (also * for backwards compatibility), specifying
1434 * the product of the indicated values.
1436 * 0 for an error, a positive value o.w.
1446 num
= strtol(val
, &expr
, 0);
1447 if ((num
== LONG_MAX
) || (num
<= 0) || (expr
== val
))
1449 num
= strtoq(val
, &expr
, 0);
1450 if ((num
== QUAD_MAX
) || (num
<= 0) || (expr
== val
))
1491 num
*= str_offt(expr
+ 1);
1501 char *fgetln(FILE *f
, size_t *);
1509 name
= fgetln(f
, &len
);
1511 getline_error
= ferror(f
) ? GETLINE_FILE_CORRUPT
: 0;
1514 if (name
[len
-1] != '\n')
1518 getline_error
= GETLINE_OUT_OF_MEM
;
1521 memcpy(temp
, name
, len
-1);
1528 * for those option functions where the archive format has nothing to do.
1541 * print the usage summary to the user
1547 (void)fputs("usage: pax [-cdnvz] [-E limit] [-f archive] ", stderr
);
1548 (void)fputs("[-s replstr] ... [-U user] ...", stderr
);
1549 (void)fputs("\n [-G group] ... ", stderr
);
1550 (void)fputs("[-T [from_date][,to_date]] ... ", stderr
);
1551 (void)fputs("[pattern ...]\n", stderr
);
1552 (void)fputs(" pax -r [-cdiknuvzDYZ] [-E limit] ", stderr
);
1553 (void)fputs("[-f archive] [-o options] ... \n", stderr
);
1554 (void)fputs(" [-p string] ... [-s replstr] ... ", stderr
);
1555 (void)fputs("[-U user] ... [-G group] ...\n ", stderr
);
1556 (void)fputs("[-T [from_date][,to_date]] ... ", stderr
);
1557 (void)fputs(" [pattern ...]\n", stderr
);
1558 (void)fputs(" pax -w [-dituvzHLPX] [-b blocksize] ", stderr
);
1559 (void)fputs("[ [-a] [-f archive] ] [-x format] \n", stderr
);
1560 (void)fputs(" [-B bytes] [-s replstr] ... ", stderr
);
1561 (void)fputs("[-o options] ... [-U user] ...", stderr
);
1562 (void)fputs("\n [-G group] ... ", stderr
);
1563 (void)fputs("[-T [from_date][,to_date][/[c][m]]] ... ", stderr
);
1564 (void)fputs("[file ...]\n", stderr
);
1565 (void)fputs(" pax -r -w [-diklntuvDHLPXYZ] ", stderr
);
1566 (void)fputs("[-p string] ... [-s replstr] ...", stderr
);
1567 (void)fputs("\n [-U user] ... [-G group] ... ", stderr
);
1568 (void)fputs("[-T [from_date][,to_date][/[c][m]]] ... ", stderr
);
1569 (void)fputs("\n [file ...] directory\n", stderr
);
1575 * print the usage summary to the user
1581 (void)fputs("usage: tar [-]{crtux}[-befhjmopqsvwyzHLOPXZ014578] [blocksize] ",
1583 (void)fputs("[archive] [replstr] [-C directory] [-I file] [file ...]\n",
1590 * print the usage summary to the user
1596 (void)fputs("usage: cpio -o [-aABcLvVzZ] [-C bytes] [-H format] [-O archive]\n", stderr
);
1597 (void)fputs(" [-F archive] < name-list [> archive]\n", stderr
);
1598 (void)fputs(" cpio -i [-bBcdfmnrsStuvVzZ6] [-C bytes] [-E file] [-H format]\n", stderr
);
1599 (void)fputs(" [-I archive] [-F archive] [pattern...] [< archive]\n", stderr
);
1600 (void)fputs(" cpio -p [-adlLmuvV] destination-directory < name-list\n", stderr
);