Updating bootstrap opac relator codes for 3.11
[evergreen-equinox.git] / docs / RELEASE_NOTES_NEXT / Administration / marc_export_strip.adoc
1 == --strip option for marc_export ==
2
3 The --strip option is used to suppress generation of specified elements
4 from the marc_export output. The option, which can be specified more than
5 once, is in one if these forms:
6
7 [source]
8 --------
9         --strip <field RE>/<subfield RE>
10         --strip /<subfield RE>
11         --strip <field RE>
12
13 Some examples:
14
15         --strip 856/0   [Delete subfield 0's in fields with tag 856.]
16
17 Regular expressions are accepted:
18
19         --strip 8../0   [Delete subfield 0's in fields with tag 800-899.]
20
21 If the field is omitted, it is as if you specified "..." for the field RE.
22
23     --strip /0      [Delete subfield 0's in all fields.]
24     --strip /[abc]  [Delete subfield a, b or c in all fields.]
25
26 If the slash and subfield are omitted, it means to delete the given fields.
27
28     -strip 856     [Delete fields with tag 856]
29
30 If the slash is present, but the subfield is omitted, it means "all subfields"
31
32     --strip 856/    [Delete all subfields with tag 856]
33 --------