rajeshkumar created the topic: Script to remove Perforce user which is LDAP disable
>> p4 users | cut -f 1 -d " " | grep -v ^user | xargs -n 1 /var/tmp/ldaplookupuser.pl
Content of ldaplookupuser.pl
#!/usr/bin/perl
my ($InUser) = shift;
# print "[INFO] Validating Perforce user - ${InUser}\n";
my ($LookupUser)=`ldapsearch -LLL -x uid=${InUser} uid`;
print "User ${InUser} no longer works at Company\n" if `ldapsearch -LLL -x uid=${InUser} uid` !~ /${InUser}/i;
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
Latest posts by Rajesh Kumar (see all)
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024