Created
December 7, 2020 15:08
-
-
Save gahr/f37579f78ccc0003b228e0cff41985ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % cat parent.xml | |
| <?xml version="1.0" standalone="no"?> | |
| <root xmlns:xi="http://www.w3.org/2001/XInclude"> | |
| <xi:include parse="text" href="text.txt"/> | |
| </root> | |
| % cat text.txt | |
| Here's some free text | |
| % xmllint --xinclude parent.xml | |
| <?xml version="1.0" standalone="no"?> | |
| <root xmlns:xi="http://www.w3.org/2001/XInclude"> | |
| Here's some free text | |
| </root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment