Archived
1
0
Fork 0
This repository has been archived on 2021-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ACU/commands/project/gen_groups.pl
2013-09-18 07:54:34 +02:00

20 lines
257 B
Perl

#! /usr/bin/env perl
use v5.10.1;
use strict;
use warnings;
use lib "../../";
use ACU::API::Base;
use ACU::API::Projects;
if ($#ARGV == 0 or $#ARGV == 1)
{
API::Projects::gen_groups($ARGV[0], $ARGV[1]);
}
else
{
say "$0 <project_id> [year]";
}