Lines Matching +full:files +full:- +full:based

1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
66 int kflag; /* do not overwrite existing files */
70 int uflag; /* ignore older modification time files */
76 int Xflag; /* archive files with same device id only */
96 * PAX - Portable Archive Interchange
99 * files and copy directory hierarchies. A variety of archive formats
102 * ustar - 10.1.1 extended tar interchange format
103 * cpio - 10.1.2 extended cpio interchange format
104 * tar - old BSD 4.3 tar format
105 * binary cpio - old cpio with binary header format
106 * sysVR4 cpio - with and without CRC
108 * This version is a superset of IEEE Std 1003.2b-d3
120 * 1.3 The user can specify via the non-standard option flag -E if error
123 * 1.4 Sparse files (lseek holes) stored on the archive (but stored with blocks
132 * 1.8 Modification change time ranges can be specified via multiple -T
133 * options. These allow a user to select files whose modification time
135 * 1.9 Files can be selected based on owner (user name or uid) via one or more
136 * -U options.
137 * 1.10 Files can be selected based on group (group name or gid) via one o
138 * more -G options.
140 * name modification (-Z)
159 * non-standard -B flag. The limit is rounded up to the next blocksize.
163 * 2.8 Access time reset with the -t applies to all file nodes (including
165 * 2.9 Symbolic links can be followed with -L (optional in the spec).
167 * multiple -T options. These allow a user to select files whose
169 * 2.11 Files can be selected based on owner (user name or uid) via one or more
170 * -U options.
171 * 2.12 Files can be selected based on group (group name or gid) via one o
172 * more -G options.
174 * following other symlinks; -H flag)
177 * 3.1 Sparse files (lseek holes) can be copied without expanding the holes
181 * preserved with the appropriate -p options.
182 * 3.3 Access time reset with the -t applies to all file nodes (including
184 * 3.4 Symbolic links can be followed with -L (optional in the spec).
186 * multiple -T options. These allow a user to select files whose
188 * 3.6 Files can be selected based on owner (user name or uid) via one or more
189 * -U options.
190 * 3.7 Files can be selected based on group (group name or gid) via one o
191 * more -G options.
193 * following other symlinks; -H flag)
195 * name modification (-D)
197 * name modification (-Y)
199 * name modification (-Z)
211 * any operational flaw will set exit_val to non-zero
233 * Where should we put temporary files? in main()
238 while (tdlen > 0 && tmpdir[tdlen - 1] == '/') in main()
239 tdlen--; in main()
324 return (-1); in setup_sig()
346 * internal tables really fast when we have a whole lot of files... in gen_init()
389 return(-1); in gen_init()
411 return(-1); in gen_init()