Revision [1283]
This is an old revision of MarkLogicGet made by DavidLee on 2010-03-01 14:57:49.
Mark Logic Command: get
Gets documents from a Mark Logic serverSynopsis
get [-c uri|-connect uri] document [document ...]Description
Get documents residing on a Mark Logic server and outputs to stdout. If more then one document is specified they are output as a sequence of documents.Documents are specified by the URI used to store the document
-c,-connect uri | Use the connection string instead of $MLCONNECT |
document | uri of the document to get |
Example
Assuming the prefix "ml" is imported as the marklogic module, gets the "test.xml" document and prints to stdoutml:get test.xml
Implementation
get is implemented as an xsh script which simply calls query. The source of the script is
import module ml=org.xmlsh.marklogic for uri ; do ml:query -q "doc(\"$uri\")" done
MarkLogic Extension Module