plugins

Home

Examples

Plugins

Source

Blog

group

version: 0.1.3 |  date: 08/08/2025 |  Manages Linux/UNIX groups |  source code

# SYNOPSIS

Manages Linux/UNIX groups

# INSTALL

    $ s6 --install group 

# USAGE

## Cli

    $ s6 --plg-run group@action=create,name=git # create git group

## Raku

    task-run 'create git group', 'group', %(
        :name<git>,
        :action<create>,
    );

    task-run 'delete git group', 'group', %(                 
        :name<git>,
        :action<delete>,
    );

    my $s = task-run 'check if git group exists', 'group', %(                 
        :name<git>,
        :action<exists>,
    );

    say $s<exists>; # True or False;


# Author

[Alexey Melezhik](mailto:melezhik@gmail.com)