⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 newmods.pl

📁 Unix下基于Web的管理工具
💻 PL
字号:
# newmods.pl# Updates an acl file to include new modules. Called with the parameters# <config directory> <module>+for($i=1; $i<@ARGV; $i++) {	if (!(-d "$ARGV[0]/$ARGV[$i]")) {		push(@new, $ARGV[$i]);		}	}if (@new) {	open(ACL, "$ARGV[0]/webmin.acl");	@acl = <ACL>;	close(ACL);	open(ACL, "> $ARGV[0]/webmin.acl");	$a = shift(@acl);	$a =~ /^(\S+):\s*(.*)$/;	$name = $1; @list = split(/\s+/, $2);	foreach $o (@list) { $old{$o}++; }	foreach $n (@new) {		push(@list, $n) if (!$old{$n});		}	print ACL "$name: ",join(" ",@list),"\n";	print ACL @acl;	close(ACL);	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -