1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Command Line Options</title>
<link href="scripts/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<h3>Command Line Options</h3>
<hr>
<p>Following is a list of recognized command line options. Note that, in the case of multiple options, they should be in the order <tt>-r, -c, -m, -o, -g, -d, -k, -a</tt> and <tt>-f</tt>.</p>
<dl>
<dt><tt>-r</tt> <i>name</i>
<dd>Select the radio with identifier <i>name</i>. See above for a list of radio names and modes currently supported.
<dt><tt>-c</tt> <i>channel</i>
<dd>Select the memory channel <i>channel</i> and set the radio frequency, mode and offset to its contents.
<dt><tt>-m</tt> <i>mode</i>
<dd>Set the radio mode to <i>mode</i>. See above for a list of mode names valid for various radios. The mode names are specific to each radio type; not all radios support the same modes.
<dt><tt>-o</tt> <i>offset</i>
<dd>Set the frequency offset for the following <tt>-g</tt> option to <i>offset</i> kHz.
<dt><tt>-g</tt> <i>frequency</i>
<dd>Set the radio frequency to <i>frequency</i> in MHz if less than 1000 and in kHz otherwise.
<dt><tt>-d</tt>
<dd>Display the current radio frequency, mode and offset. This is designed for use in shell scripts to confirm or log the results.
<dt><tt>-k</tt>
<dd>Begin program operation in keypad mode.
<dt><tt>-f</tt> <i>filename</i>
<dd>Read commands from the file <i>filename</i>.
<dt><tt>-a</tt>
<dd>Enable the audio codec (Sun workstations only).
</dl>
<hr>
<script type="text/javascript" language="javascript" src="scripts/footer.txt"></script>
</body>
</html>
|