📄 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 <ldif_file>\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);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -