$ microx --expr "/collection/record/datafield[@tag='245']/subfield[@code='a']" test/resource/GW_bf_test10.mrx
<subfield code="a">The Medieval mind</subfield>
<subfield code="a">The Chinese bubble</subfield>
<subfield code="a">Zhu fu</subfield>
<subfield code="a">Persuasion :</subfield>
<subfield code="a">Wearing hijab</subfield>
<subfield code="a">Inside Mecca</subfield>
<subfield code="a">Alien quadrilogy</subfield>
<subfield code="a">Erich Kästners Das doppelte Lottchen /</subfield>
<subfield code="a">Doctor Who. Season 2</subfield>
<subfield code="a">Who Killed Vincent Chin?</subfield>
<subfield code="a">Wholphin</subfield>
Last active
November 3, 2016 18:20
-
-
Save uogbuji/6e5710e03233a20f213a039fb3d6e577 to your computer and use it in GitHub Desktop.
UXpath MARC 20161103
$ microx --match "datafield[@tag='245']/subfield[@code='a']" test/resource/GW_bf_test10.mrx
<subfield code="a">The Medieval mind</subfield>
<subfield code="a">The Chinese bubble</subfield>
<subfield code="a">Zhu fu</subfield>
<subfield code="a">Persuasion :</subfield>
<subfield code="a">Wearing hijab</subfield>
<subfield code="a">Inside Mecca</subfield>
<subfield code="a">Alien quadrilogy</subfield>
<subfield code="a">Erich Kästners Das doppelte Lottchen /</subfield>
<subfield code="a">Doctor Who. Season 2</subfield>
<subfield code="a">Who Killed Vincent Chin?</subfield>
<subfield code="a">Wholphin</subfield>
$ microx --match "datafield[@tag='245']/subfield[@code='a']" --foreach "string(.)" test/resource/GW_bf_test10.mrx
The Medieval mind
The Chinese bubble
Zhu fu
Persuasion :
Wearing hijab
Inside Mecca
Alien quadrilogy
Erich Kästners Das doppelte Lottchen /
Doctor Who. Season 2
Who Killed Vincent Chin?
Wholphin
$ microx --match "datafield[@tag='245'][subfield[@code='c']]/subfield[@code='a']" test/resource/GW_bf_test10.mrx
<subfield code="a">The Medieval mind</subfield>
<subfield code="a">The Chinese bubble</subfield>
<subfield code="a">Zhu fu</subfield>
<subfield code="a">Persuasion :</subfield>
<subfield code="a">Wearing hijab</subfield>
<subfield code="a">Inside Mecca</subfield>
<subfield code="a">Erich Kästners Das doppelte Lottchen /</subfield>
<subfield code="a">Doctor Who. Season 2</subfield>
<subfield code="a">Who Killed Vincent Chin?</subfield>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment