aboutsummaryrefslogtreecommitdiffstats
path: root/src/gitjoe/rmuser.pl
blob: 2840c65a3115e9e37e3a03482ebdd41fd40f0031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/local/bin/perl

use strict;
use warnings;
use Term::ANSIColor;
use constant {
	DASH_PATH	=> '/usr/local/bin/dash',
	RMUSER_PATH	=> '/usr/sbin/rmuser',
};

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(
		DASH_PATH,
		'-c',
		RMUSER_PATH . " << EOF
" . $usr . "
y
y
EOF"
		);
	print "Removed git user " . colored($usr, 'bold yellow') . ".\n";
	exit;
}

main();

__END__