#!/usr/local/bin/perl use strict; use warnings; use Term::ANSIColor; use constant HOME_DIR => '/usr/local/git/'; sub main { my $argc = $#ARGV + 1; if ($argc < 3) { print colored("Failed!\n", 'bold red') . "Missing argument, 3 needed " . colored("[user - reponame - new description]", 'bold') . "\n"; exit 1; } my $usr = $ARGV[0]; my $repo = $ARGV[1]; my $desc = $ARGV[2]; my $home_dir = HOME_DIR . $usr . '/'; if (substr($repo, -4) ne '.git') { $repo = $repo . '.git'; } $repo = $repo . '/'; open(my $desc_fh, '>:encoding(UTF-8)', $home_dir . $repo . 'description'); print $desc_fh $desc; close($desc_fh); substr($repo, -1) = ""; print "Changed git repository " . colored($repo, 'bold green') . " description for user " . colored($usr, 'bold') . ".\n" . "New description: ". colored($desc, 'bold green') . ".\n"; exit; } main(); __END__