?? ldap-del-user
字號:
#!/usr/bin/perl## Delete user entry from LDAP# by pfalcon@users.sourceforge.net 2000-10-18# $Id: ldap-del-user,v 1.2 2002/12/23 13:17:14 lo-lan-do Exp $#require("include.pl"); # Include all the predefined functions&parse_local_inc;if (!($#ARGV+1)) { print "Usage: $0 <user_name>\n"; exit;}$cmd = "${ldap_prefix}ldapdelete -h $sys_ldap_host -p $sys_ldap_port -D '$sys_ldap_admin_dn' -W -C 'uid=$ARGV[0],ou=People,$sys_ldap_base_dn'";#print "$cmd\n";system($cmd);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -