~ed.so/duplicity/reuse-passphrase-for-signing-fix

« back to all changes in this revision

Viewing changes to duplicity.1

  • Committer: bescoto
  • Date: 2002-11-02 19:14:51 UTC
  • Revision ID: vcs-imports@canonical.com-20021102191451-erh14ff2bmkd6ny6
Updated documentation on new globbing options

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
.B FILE SELECTION
118
118
section for more information.
119
119
.TP
 
120
.BR "--exclude-globbing-filelist " filename
 
121
Like
 
122
.B --exclude-filelist
 
123
but each line of the filelist will be interpreted according to the
 
124
same rules as
 
125
.B --include
 
126
and
 
127
.B --exclude.
 
128
.TP
120
129
.B --exclude-other-filesystems
121
130
Exclude files on file systems (identified by device number) other than
122
131
the file system the root of the source directory is on.
160
169
.BR --include-filelist ,
161
170
but read the list of included files from standard input.
162
171
.TP
 
172
.BI "--include-globbing-filelist " filename
 
173
Like
 
174
.B --include-filelist
 
175
but each line of the filelist will be interpreted according to the
 
176
same rules as
 
177
.B --include
 
178
and
 
179
.B --exclude.
 
180
.TP
163
181
.BI "--include-regexp " regexp
164
182
Include files matching the regular expression
165
183
.IR regexp .
234
252
.BR --exclude-device-files ,
235
253
.BR --exclude-filelist ,
236
254
.BR --exclude-filelist-stdin ,
 
255
.BR --exclude-globbing-filelist ,
237
256
.BR --exclude-regexp ,
238
257
.BR --include ,
239
258
.BR --include-filelist ,
240
259
.BR --include-filelist-stdin ,
 
260
.BR --include-globbing-filelist ,
241
261
and
242
262
.BR --include-regexp .
243
263
Each file selection condition either matches or doesn't match a given
271
291
/usr/local/doc.
272
292
 
273
293
The
274
 
.B include
 
294
.BR include ,
 
295
.BR exclude ,
 
296
.BR include-globbing-filelist ,
275
297
and
276
 
.B exclude
 
298
.B exclude-globbing-filelist
277
299
options accept
278
300
.IR "extended shell globbing patterns" .
279
301
These patterns can contain the special patterns
420
442
/var.  A single file list should not contain conflicting file
421
443
specifications.
422
444
 
 
445
The
 
446
.B --include-globbing-filelist
 
447
and
 
448
.B --exclude-globbing-filelist
 
449
options also specify filelists, but each line in the filelist will be
 
450
interpreted as a globbing pattern the way
 
451
.B --include
 
452
and
 
453
.B --exclude
 
454
options are interpreted (although "+ " and "- " prefixing is still
 
455
allowed).  For instance, if the file "globbing-list.txt" contains the
 
456
lines:
 
457
 
 
458
.RE
 
459
.RS
 
460
dir/foo
 
461
.RE
 
462
.RS
 
463
+ dir/bar
 
464
.RE
 
465
.RS
 
466
- **
 
467
 
 
468
.RE
 
469
Then "--include-globbing-filelist globbing-list.txt" would be exactly
 
470
the same as specifying "--include dir/foo --include dir/bar --exclude **"
 
471
on the command line.
 
472
 
423
473
Finally, the
424
474
.B --include-regexp
425
475
and