diff options
author | Joe <bousset.rudy@gmail.com> | 2022-05-06 14:57:57 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-05-06 14:57:57 +0200 |
commit | 6054dcfd97bc7c3b2972ad21fe2ff171cd4be549 (patch) | |
tree | b2c7da23b69ea5be45beadf8361d0de7b2c36ff4 /src/rmuser.pl | |
download | gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.tar.gz gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.tar.bz2 gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.tar.xz gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.tar.zst gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.zip |
udpate
Diffstat (limited to 'src/rmuser.pl')
-rwxr-xr-x | src/rmuser.pl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/rmuser.pl b/src/rmuser.pl new file mode 100755 index 0000000..9753950 --- /dev/null +++ b/src/rmuser.pl @@ -0,0 +1,31 @@ +#!/usr/local/bin/perl + +use strict; +use warnings; +use Term::ANSIColor; + +sub main +{ + my $argc = $#ARGV + 1; + if ($argc < 1) { + print colored("Failed!\n", 'bold red') + . "Missing argument, 1 needed " + . colored("[user]", 'bold') + . "\n"; + exit 1; + } + my $usr = $ARGV[0]; + system( + "rmuser << EOF +" . $usr . " +y +y +EOF" + ); + print "Removed git user " . colored($usr, 'bold yellow') . ".\n"; + exit; +} + +main(); + +__END__ |