diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 21:37:13 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 21:37:13 +0200 |
commit | 38dde81533b56f8f07c381be581ddbb7dba7e011 (patch) | |
tree | d66d70dd6fd7323580f74dfdff67c70c02117b38 /src/gitjoe-repodesc.pl | |
parent | CSS copy fix (diff) | |
download | joe-scripts-38dde81533b56f8f07c381be581ddbb7dba7e011.tar.gz joe-scripts-38dde81533b56f8f07c381be581ddbb7dba7e011.tar.bz2 joe-scripts-38dde81533b56f8f07c381be581ddbb7dba7e011.tar.xz joe-scripts-38dde81533b56f8f07c381be581ddbb7dba7e011.tar.zst joe-scripts-38dde81533b56f8f07c381be581ddbb7dba7e011.zip |
Repo description tool
Diffstat (limited to '')
-rw-r--r-- | src/gitjoe-repodesc.pl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/gitjoe-repodesc.pl b/src/gitjoe-repodesc.pl new file mode 100644 index 0000000..96d5b54 --- /dev/null +++ b/src/gitjoe-repodesc.pl @@ -0,0 +1,32 @@ +#!/usr/local/bin/perl + +use strict; +use warnings; +use Term::ANSIColor; + +sub main { + my $argc = $#ARGV + 1; + if ($argc < 2) { + print colored("Failed!\n", 'bold red') + . "Missing argument, 3 needed " + . colored("[user - reponame - description]", 'bold') + . "\n"; + exit 1; + } + my $usr = $ARGV[0]; + my $repo = $ARGV[1]; + my $desc = $ARGV[2]; + my $home_dir = '/usr/home/' . $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); + exit; +} + +main(); + +__END__ |