e762e253a4779584500e999e2f0b4a5603bbc373
[yaz-moved-to-github.git] / doc / yaz-client-commands.xml
1 <!-- 
2    $Id: yaz-client-commands.xml,v 1.1 2002-09-16 14:16:31 adam Exp $
3    Commands for YAZ client.
4    Included in both manual and man page for yaz-client.
5 -->
6 <variablelist>
7  <varlistentry><term>
8    <literal>open </literal><replaceable>zurl</replaceable>
9   </term>
10   <listitem>
11    <para>Opens a connection to a server. The syntax for
12     <replaceable>zurl</replaceable> is the same as described
13     above for connecting from the command line.
14    </para>
15    <para>
16     Syntax:
17    </para>
18    <para>
19     [<literal>(tcp|ssl|unix)':'</literal>]<replaceable>host</replaceable>
20     [:<replaceable>port</replaceable>][/<replaceable>base&gt;</replaceable>]
21    </para>
22   </listitem>
23  </varlistentry>
24  <varlistentry><term>
25    <literal>quit</literal>
26   </term>
27   <listitem>
28    <para>Ends YAZ client</para>
29   </listitem>
30  </varlistentry>
31  <varlistentry><term>
32    <literal>f </literal><replaceable>query</replaceable></term>
33   <listitem>
34    <para>Sends a Search Request using the <replaceable>query</replaceable>
35     given.
36    </para>
37   </listitem>
38  </varlistentry>
39  <varlistentry><term>
40    <literal>delete</literal> <replaceable>setname</replaceable></term>
41   <listitem>
42    <para>Deletes result set with name <replaceable>setname</replaceable>
43     on the server.</para>
44   </listitem>
45  </varlistentry>
46  <varlistentry><term>
47    <literal>base </literal><replaceable>base1</replaceable>
48    <replaceable>base2</replaceable> ...
49   </term>
50   <listitem>
51    <para>Sets the name(s) of the database(s) to search. One or more
52     databases may be specified separated by blanks. This commands overrides
53     the database given in <replaceable>zurl</replaceable>.
54    </para>
55   </listitem>
56  </varlistentry>
57  <varlistentry><term>
58    <literal>show </literal>
59    [<replaceable>start</replaceable>[+<replaceable>number</replaceable>]]
60   </term>
61   <listitem>
62    <para>Fetches records by sending a Present Request from the start
63     position given by
64     <replaceable>start</replaceable>
65     a number of records given by <replaceable>number</replaceable>. If
66     <replaceable>start</replaceable> is not given, then the client
67     will fetch from position of the last retrieved record plus 1. If
68     <replaceable>number</replaceable> is not given, then one record will
69     be fetched at a time.
70    </para>
71   </listitem>
72  </varlistentry>
73  <varlistentry><term>
74    <literal>scan</literal> <replaceable>term</replaceable>
75   </term>
76   <listitem>
77    <simpara>Scans
78     database index for a term. The syntax resembles the syntax
79     for <literal>find</literal>.
80     If you want to scan for the word <literal>water</literal> you could
81     write
82    </simpara>
83    <screen>
84     scan water
85    </screen>
86    <simpara>
87     but if you want to scan only in, say the title field, you would write
88    </simpara>
89    <screen>
90     scan @attr 1=4 water
91    </screen>
92   </listitem>
93  </varlistentry>
94  <varlistentry id="sortspec"><term>
95    <literal>sort</literal> <replaceable>sortspecs</replaceable>
96   </term>
97   <listitem>
98    <para>Sorts a result set. The sort command takes a
99     sequence of sort specifications. A sort
100     specification holds a field (sort criteria) and is followed by flags.
101     If the sort criteria includes <literal>=</literal> it is assumed
102     that the sort SortKey is of type sortAttributes using Bib-1.
103     The integer before <literal>=</literal> is
104     the attribute type and the integer following <literal>=</literal>
105     is the attribute value.
106     If no <literal>=</literal> is in the SortKey it is treated as a
107     sortfield-type of type InternationalString.
108     Flags observed are: <literal>s</literal>
109     for case sensitive, <literal>i</literal> for case insensitive,
110     <literal>&lt;</literal> for sort ascending and <literal>&gt;</literal>
111     for sort descending.
112    </para>
113   </listitem>
114  </varlistentry>
115  <varlistentry><term>
116    <literal>sort+</literal>
117   </term>
118   <listitem>
119    <para>Same as <literal>sort</literal> but stores the sorted
120     result set in a new result set.
121    </para>
122   </listitem>
123  </varlistentry>
124  <varlistentry><term>
125    <literal>authentication</literal> <replaceable>openauth</replaceable>
126   </term>
127   <listitem>
128    <para>Sets up a authentication string if a server requires
129     authentication (v2 OpenStyle). The authentication string is first
130     sent to the server when the <literal>open</literal> command is
131     issued and the Z39.50 Initialize Request is sent, so this command
132     must be used before <literal>open</literal> in order to be effective.
133     A common convention for the <replaceable>authopen</replaceable> string
134     is that the username - and password is separated by a slash, e.g.
135     <literal>myusername/mysecret</literal>.
136    </para>
137   </listitem>
138  </varlistentry>
139  <varlistentry><term>
140    <literal>lslb</literal> <replaceable>n</replaceable>
141   </term>
142   <listitem>
143    <para>Sets the limit for when no records should be returned
144     together with the search result.
145     See the
146     <ulink
147            url="http://lcweb.loc.gov/z3950/agency/markup/04.html#3.2.2.1.6">
148      Z39.50 standard
149     </ulink>
150     for more details.
151    </para>
152   </listitem>
153  </varlistentry>
154
155  <varlistentry><term>
156    <literal>ssub</literal> <replaceable>n</replaceable>
157   </term>
158   <listitem>
159    <para>Sets the limit for when all records should be returned with
160     the search result.
161     See the
162     <ulink
163            url="http://lcweb.loc.gov/z3950/agency/markup/04.html#3.2.2.1.6">
164      Z39.50 standard
165     </ulink> for more details.
166    </para>
167   </listitem>
168  </varlistentry>
169  
170  <varlistentry><term>
171    <literal>mspn</literal> <replaceable>n</replaceable>
172   </term>
173   <listitem>
174    <para>Sets the number of records should be returned if the
175     number of records in the result set is between the values of
176     <literal>lslb</literal> and <literal>ssub</literal>.
177     See the
178     <ulink
179            url="http://lcweb.loc.gov/z3950/agency/markup/04.html#3.2.2.1.6">
180      Z39.50 standard
181     </ulink>
182     for more details.
183    </para>
184   </listitem>
185  </varlistentry>
186  <varlistentry><term>
187    <literal>status</literal>
188   </term>
189   <listitem>
190    <para>Displays the values of <literal>lslb</literal>,
191     <literal>ssub</literal> and <literal>mspn</literal>.
192    </para>
193   </listitem>
194  </varlistentry>
195  <varlistentry><term>
196    <literal>setname</literal>
197   </term>
198   <listitem>
199    <para>Switches named result sets on and off. Default is on.
200    </para>
201   </listitem>
202  </varlistentry>
203  <varlistentry><term>
204    <literal>cancel</literal>
205   </term>
206   <listitem>
207    <para>Sends a Trigger Resource Control Request to the target.
208    </para>
209   </listitem>
210  </varlistentry>
211  <varlistentry><term>
212    <literal>format</literal> <replaceable>oid</replaceable>
213   </term>
214   <listitem>
215    <para>Sets the preferred transfer syntax for retrieved records.
216     yaz-client supports all the record syntaxes that currently
217     are registered. See
218     <ulink
219            url="http://lcweb.loc.gov/z3950/agency/defns/oids.html#5">
220      Z39.50 Standard
221     </ulink>
222     for more details. Commonly used records syntaxes include usmarc,
223     sutrs, grs1 and xml.
224    </para>
225   </listitem>
226  </varlistentry>
227  <varlistentry><term>
228    <literal>elements</literal> <replaceable>e</replaceable>
229   </term>
230   <listitem>
231    <para>Sets the element set name for the records. Many targets support
232     element sets are B (for brief) and F (for full).
233    </para>
234   </listitem>
235  </varlistentry>
236  <varlistentry><term>
237    <literal>close</literal>
238   </term>
239   <listitem>
240    <para>Sends a Z39.50 Close APDU and closes connection with the peer
241    </para>
242   </listitem>
243  </varlistentry>
244  <varlistentry><term>
245    <literal>querytype</literal> <replaceable>type</replaceable>
246   </term>
247   <listitem>
248    <para>Sets the query type as used by command <literal>find</literal>.
249     The following is supported: <literal>prefix</literal> for 
250     <link linkend="PQF">Prefix Query Notation</link> (Type-1 Query);
251     <literal>ccl</literal> for CCL search (Type-2
252     Query) or <literal>ccl2rpn</literal> for
253     <link linkend="CCL">CCL</link> to RPN conversion (Type-1 Query).
254    </para>
255   </listitem>
256  </varlistentry>
257  <varlistentry><term>
258    <literal>attributeset</literal> <replaceable>set</replaceable>
259   </term>
260   <listitem>
261    <para>
262     Sets attribute set OID for prefix queries (RPN, Type-1).
263    </para>
264   </listitem>
265  </varlistentry>
266  <varlistentry><term>
267    <literal>refid</literal> <replaceable>id</replaceable>
268   </term>
269   <listitem>
270    <para>Sets reference ID for Z39.50 Request(s).
271    </para>
272   </listitem>
273  </varlistentry>
274  <varlistentry><term>
275    <literal>itemorder</literal>
276    <replaceable>type</replaceable> <replaceable>no</replaceable>
277   </term>
278   <listitem>
279    <para>Sends an Item Order Request using the ILL External. 
280     <replaceable>type</replaceable> is either 1 or 2 which corresponds to
281     ILL-Profile 1 and 2 respectively. The <replaceable>no</replaceable>
282     is the Result Set position of the record to be ordered.
283    </para>
284   </listitem>
285  </varlistentry>
286  <varlistentry><term>
287    <literal>update</literal>
288   </term>
289   <listitem>
290    <para>Sends Item Update Request. This command sends a "minimal"
291     PDU Update to the target supplying the last received record from
292     the target.
293     If no record has been received from the target this command is ignored
294     and nothing is sent to the target.
295    </para>
296   </listitem>
297  </varlistentry>
298
299  <varlistentry><term>
300    <literal>.</literal>
301    <replaceable>filename</replaceable>
302   </term>
303   <listitem>
304    <para>Executes list of commands from
305     file <replaceable>filename</replaceable>, just like source on
306     most UNIX shells.
307    </para>
308   </listitem>
309  </varlistentry>
310
311  <varlistentry><term>
312    <literal>!</literal>
313    <replaceable>args</replaceable>
314   </term>
315   <listitem>
316    <para>Executes command <replaceable>args</replaceable> in subshell
317     using the <literal>system</literal> call.
318    </para>
319   </listitem>
320  </varlistentry>
321
322  <varlistentry><term>
323    <literal>push_commande</literal>
324    <replaceable>command</replaceable>
325   </term>
326   <listitem>
327    <para>The push_command takes another command as its argument.
328     That command is then added to the history information (so
329     you can retrieve it later). The command itself is not
330     executed. This command only works if you have GNU readline/history
331     enabled.
332    </para>
333   </listitem>
334  </varlistentry>
335
336  <varlistentry><term>
337    <literal>set_apdufile</literal>
338    <replaceable>filename</replaceable>
339   </term>
340   <listitem>
341    <para>Sets that APDU should be logged to file
342     <replaceable>filename</replaceable>. This command does the
343     thing as option <literal>-a</literal>.
344    </para>
345   </listitem>
346  </varlistentry>
347
348  <varlistentry><term>
349    <literal>set_marcdump</literal>
350    <replaceable>filename</replaceable>
351   </term>
352   <listitem>
353    <para>Specifies that all retrieved records should be appended ot
354     file <replaceable>filename</replaceable>. This command does the
355     thing as option <literal>-m</literal>.
356    </para>
357   </listitem>
358  </varlistentry>
359
360  <varlistentry><term>
361    <literal>set_cclfields</literal>
362    <replaceable>filename</replaceable>
363   </term>
364   <listitem>
365    <para>Specifies that CCL fields should be read from file
366     file <replaceable>filename</replaceable>. This command does the
367     thing as option <literal>-c</literal>.
368    </para>
369   </listitem>
370  </varlistentry>
371
372  <varlistentry><term>
373    <literal>register_oid</literal>
374    <replaceable>name</replaceable>
375    <replaceable>class</replaceable>
376    <replaceable>OID</replaceable>
377   </term>
378   <listitem>
379    <para>This command allows you to register your own object
380     identifier - so that instead of entering a long dot-notation
381     you can use a short name instead.
382     The <replaceable>name</replaceable> is your
383     name for the OID, <replaceable>class</replaceable> is the
384     class, and <replaceable>OID</replaceable> is the raw OID in
385     dot notation. Class is one <literal>appctx</literal>,
386     <literal>absyn</literal>, <literal>attet</literal>,
387     <literal>transyn</literal>, <literal>diagset</literal>,
388     <literal>recsyn</literal>, <literal>resform</literal>,
389     <literal>accform</literal>, <literal>extserv</literal>,
390     <literal>userinfo</literal>, <literal>elemspec</literal>,
391     <literal>varset</literal>, <literal>schema</literal>,
392     <literal>tagset</literal>, <literal>general</literal>.
393     If you're in doubt use the <literal>general</literal>
394     class.
395    </para>
396   </listitem>
397  </varlistentry>
398  
399 </variablelist>
400 <!-- Keep this comment at the end of the file
401 Local variables:
402 mode: sgml
403 sgml-omittag:t
404 sgml-shorttag:t
405 sgml-minimize-attributes:nil
406 sgml-always-quote-attributes:t
407 sgml-indent-step:1
408 sgml-indent-data:t
409 sgml-parent-document: "yaz.xml"
410 sgml-local-catalogs: nil
411 sgml-namecase-general:t
412 End:
413 -->