Actions
$group » History » Revision 1
Revision 1/7
| Next »
Per Amundsen, 08/11/2015 01:13 PM
Added in 1.9.0
$group(#|N)
Returns the name or status of a #group in a script.
Parameters
#|N - Group name or if N = 0, number of groups, otherwise the Nth group.
Properties
.status - Returns on or off.
.fname - Returns the script filename in which the group exists.
.name - Returns name of the group.
Examples
; Create a group #example on alias Example { echo -ag Group works } #example off ; Print number of groups. //echo -ag $group(0) ; Print the '#example' group status. //echo -ag #example1 is $group(#example1).status ; Disable the '#example' group /disable #example ; Print the '#example' group status again. //echo -ag #example1 is $group(#example1).status
Updated by Per Amundsen over 9 years ago · 1 revisions