GForge 3.0 协作开发平台 支持CVS, mailing lists, bug tracking, message boards/forums, task management, perman
源代码在线查看: ldap-import
#!/usr/bin/perl # # Import LDIF file to LDAP database # by pfalcon@users.sourceforge.net 2000-10-18 # $Id: ldap-import,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 \n"; exit; } $cmd = "${ldap_prefix}ldapadd -h $sys_ldap_host -p $sys_ldap_port -D '$sys_ldap_admin_dn' -W -f $ARGV[0]"; #print "$cmd\n"; system($cmd);