diff --git a/src/ca/CAref.html b/src/ca/CAref.html index 9cf787c29..90db674b8 100644 --- a/src/ca/CAref.html +++ b/src/ca/CAref.html @@ -4,6 +4,10 @@
See also Routing Restrictions on vxWorks Systems.
-acctst <PV name> [progress logging level] [channel duplication count] @@ -810,6 +828,262 @@ of the PV is converted to each of the many external data type that can be specified at the CA client library interface, and each of these is formated and then output to the console. +Command Line Tools (under development)
+ +Note: The CA Command Line Tools are currently +under development. Thus only the first of the tools is included in EPICS Base +R3.14.5, while the others are still being worked on. These tools have not yet +proven to be stable and reliable. The user interface might still change, so +please be careful relying on these early versions in scripts and other +crucial places. Please report any bugs or unexpected behaviour to the author: +Ralph.Lange@bessy.de
+ +caget
+caget [options] <PV name> ...+ +Description
+ +Get and print value for PV(s).
+ +The values for one or multiple PVs are read and printed to stdout. The +DBR_... format in which the data is read, the output format, and a number of +details of how integer and float values are represented can be controlled +using command line options.
+ +
| Option | +Description | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
-h + |
+ Print usage information | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| + | + | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -w <sec> | +Wait time, specifies longer CA timeout, default is 1.0 second | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -c | +Asynchronous get (use ca_get_callback instead of ca_get) | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| + | Format options: | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| + | Default output format is "name value" | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -t | +Terse mode - print only value, without name | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -a | +Wide mode "name timestamp value stat sevr" (read PVs as + DBR_TIME_xxx) | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -n | +Print DBF_ENUM values as number (default are enum string + values) | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -d <type> | +Request specific dbr type; use string (DBR_ prefix may be omitted)
+
+ or number of one of the following types: + +
|
+ ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| + | Arrays: | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| + | Value format: Print number of requested values, then list of + values | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Default: | +Print all values | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -# <count> | +Print first <count> elements of an array | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| + | Floating point type format: | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Default: | +Use %g format | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -f <nr> | +Use %f format, with <nr> digits after the decimal point | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -e <nr> | +Use e format, with <nr> digits after the decimal point | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| + | Integer number format: | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Default: | +Print as decimal number | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -0x | +Print as hex number | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -0o | +Print as octal number | +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| -0b | +Print as binary number | +
camonitor [options] <PV name> ...+ +
Not implemented.
+$Id$
+$Id: CAref.html,v 1.58.2.1 2003/09/03 22:31:48 jhill Exp +$