同步操作将从 Gitee 极速下载/MiniGUI 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/perl# checkhelp.pl - finds configuration options that have no# corresponding section in the help file## made by Meelis Roos (mroos@tartu.cyber.ee)# read the help file@options=split /\n/, `grep '^CONFIG' Documentation/Configure.help`;die "Can't read Documentation/Configure.help\n" if $#options == -1;#read all the filesforeach $file (@ARGV){open (FILE, $file) || die "Can't open $file: $!\n";while (<FILE>) {# repeat until no CONFIG_* are leftwhile (/^\s*(bool|tristate|dep_tristate|string|int|hex).*' *(.*)'.*(CONFIG_\w*)/) {$what=$3;$name=$2;s/3ドル//;@found = grep (/$what$/, @options);if ($#found == -1) {next if $nohelp{$what};print "$name\n$what\n No help for $what\n\n";$nohelp{$what}=1;}}}close (FILE);}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。