| | 1 | [ShCommands Return to command index] |
| | 2 | |
| | 3 | == info entry definitions == |
| | 4 | |
| | 5 | '''command''': ENTRY <keyword> <p1> <p2> ... <pN> |
| | 6 | |
| | 7 | Defines, renames or lists info entries. |
| | 8 | |
| | 9 | === parameters === |
| | 10 | |
| | 11 | * <keyword> ''parameter type: string''[[BR]] |
| | 12 | Subfunction keyword. Valid values are |
| | 13 | * DEFINE - define new info entry: |
| | 14 | * <p1> ''text''[[BR]] |
| | 15 | name of new info entry |
| | 16 | * <p2> ''char''[[BR]] |
| | 17 | type of new info entry (L,I,B,R,S,C,T,P,F) |
| | 18 | * <p3> ''integer''[[BR]] |
| | 19 | internal index number of info entry |
| | 20 | * <p4> ''integer''[[BR]] |
| | 21 | q-file entry number |
| | 22 | * RENAME - renames existing info entry |
| | 23 | * <p1> ''text''[[BR]] |
| | 24 | old name |
| | 25 | * <p2> ''text''[[BR]] |
| | 26 | new name |
| | 27 | * LIST - lists all currently defines info entries to a file and to the info channel(s). |
| | 28 | * <p1> ''text''[[BR]] |
| | 29 | name of output file |
| | 30 | |
| | 31 | === example === |
| | 32 | |
| | 33 | `entry DEFINE MYINFO R 12 26`:: |
| | 34 | defines new info entry. Look at free info entry numbers by "[ShEntry ENTRY] LIST XXX" command. |
| | 35 | |
| | 36 | `entry RENAME DELTA DELTA_T`:: |
| | 37 | renames info entry |
| | 38 | |
| | 39 | `entry LIST ENTRY.LIS`:: |
| | 40 | creates list of existing entries in file ENTRY.LIS and displays this file |