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

📄 fileno-to-pathname.pl

📁 -
💻 PL
字号:
#!/usr/local/bin/perl# $Id: fileno-to-pathname.pl,v 1.2 1997/07/16 20:31:55 wessels Exp $# Convert hexadecimal cache file numbers (from swap log) into full pathnames.  # Duane Wessels 6/30/97require 'getopts.pl';&Getopts('c:');$L1 = 16;$L2 = 256;$CF = $opt_c || '/usr/local/squid/etc/squid.conf';&usage unless (open (CF));$ncache_dirs = 0;while (<CF>) {	$CD[$ncache_dirs++] = $1 if (/^cache_dir\s+(\S+)/);	$L1 = $1 if (/^swap_level1_dirs\s+(\d+)/);	$L2 = $1 if (/^swap_level2_dirs\s+(\d+)/);}close(CF);unless ($ncache_dirs) {	$CD[$ncache_dirs++] = '/usr/local/squid/cache';}while (<>) {	chop;	print &storeSwapFullPath(hex($_)), "\n";}sub storeSwapFullPath {	local($fn) = @_;	sprintf "%s/%02X/%02X/%08X",		$CD[$fn % $ncache_dirs],		($fn / $ncache_dirs) % $L1,		($fn / $ncache_dirs) / $L1 % $L2,		$fn;}sub usage {	print STDERR "usage: $0 -c config\n";	print STDERR "hexadecimal file numbers are read from stdin\n";	exit 1;}

⌨️ 快捷键说明

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