📄 cachemgr.cgi
字号:
#!/usr/local/bin/perl# cachemgr.cgi# Run the squid cachemgr.cgi programrequire './squid-lib.pl';$mgr = $config{'cachemgr_path'};if (&has_command($mgr)) { $| = 1; system($mgr, @ARGV); }else { &header("Error", ""); print "<hr>\n"; print "The Squid cache manager program <tt>$mgr</tt> was not found\n"; print "on your system. Maybe your <a href=/config.cgi?$module_name>module\n"; print "configuration</a> is incorrect. <p>\n"; }print "<hr>\n";&footer("", "squid index");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -