So I have a file uris.xqy that gets the document URI's that I want to operate on in corb.
Then I have docs.xqy that brings in the $URI
declare variable $URI as xs:string external;
And then I do some processing on that document.
Now I want to pass in a parameter to corb from the command line such that
./ml ${Environment} corb --uris=/uris.xqy --modules=/docs.xqy --hello=world
When I execute the command above I would have access to hello and it's contents world in docs.xqy.