Re: [basex-talk] How do I create UNIX/Linux shell scripts that connect to BASEXCLIENT

2014-02-15 Thread Christian GrĂ¼n
Hi Daiane, please check out the start options from the BaseX client: http://docs.basex.org/wiki/Command-Line_Options#BaseX_Client Cheers, Christian On Sat, Feb 15, 2014 at 5:57 PM, DAIANE ROBERTA CANDIDA dair...@hotmail.com wrote: Hello, I want to create a Shell script to connect

Re: [basex-talk] How do I create UNIX/Linux shell scripts that connect to BASEXCLIENT

2014-02-15 Thread Alexander Holupirek
Hi Daiane, Start server: $ basexserver Use client to connect, execute query and store result in file: $ basexclient -U admin -P admin -o result.tx 1+1 $ cat result.txt 2 Doing stuff like that from within a shell script should be no problem. Are there any specific issues you are facing?