diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-06 17:54:10 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-06 17:54:10 +0200 |
commit | 7a9414f390f51c5197532dfd71fe5aaaa81d6348 (patch) | |
tree | 31443ff48fe169a899f072a4a33dbe3a57fc91cf | |
parent | Fix (diff) | |
download | joe-scripts-7a9414f390f51c5197532dfd71fe5aaaa81d6348.tar.gz joe-scripts-7a9414f390f51c5197532dfd71fe5aaaa81d6348.tar.bz2 joe-scripts-7a9414f390f51c5197532dfd71fe5aaaa81d6348.tar.xz joe-scripts-7a9414f390f51c5197532dfd71fe5aaaa81d6348.tar.zst joe-scripts-7a9414f390f51c5197532dfd71fe5aaaa81d6348.zip |
Sending that
-rw-r--r-- | gitjoe-rmrepo.pl | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gitjoe-rmrepo.pl b/gitjoe-rmrepo.pl new file mode 100644 index 0000000..ebbcf76 --- /dev/null +++ b/gitjoe-rmrepo.pl @@ -0,0 +1,33 @@ +#!/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, 2 needed " + . colored("[user - reponame]", 'bold') + . "\n"; + exit 1; + } + my $usr = $ARGV[0]; + my $repo = $ARGV[1]; + my $home_dir = '/usr/home/' . $usr . '/'; + if (substr($repo, -4) ne '.git') { + $repo = $repo . '.git'; + } + $repo = $repo . '/'; + system( + '/usr/local/bin/dash', + '-c', + '/bin/rm -rfv ' . $home_dir . $repo; + ); + exit; +} + +main(); + +__END__ |