diff options
Diffstat (limited to 'gitjoe-rmuser.pl')
-rw-r--r-- | gitjoe-rmuser.pl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gitjoe-rmuser.pl b/gitjoe-rmuser.pl new file mode 100644 index 0000000..f84dbc6 --- /dev/null +++ b/gitjoe-rmuser.pl @@ -0,0 +1,28 @@ +#!/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( + '/usr/local/bin/dash', + '-c', + "rmuser << EOF +" . $usr . " +y +y +EOF" + ); +} + +main(); |