亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? lsparse.pl

?? 站點映像程序
?? PL
?? 第 1 頁 / 共 3 頁
字號:
			if( $kind =~ /^d/ ) {				# a directory				$type = 'd';				$size = 0;   # Don't believe the report size			}			$currdir =~ s,/+,/,g;			$file =~ s,^/$match,,;			$file = "/$currdir/$file";			$file =~ s,/+,/,g;			return( substr( $file, 1 ), $size, $time, $type, $mode );		}		elsif( /^[dcbsp].*[^:]$/ || /^\s*$/ || /^[Tt]otal.*/ || /[Uu]nreadable$/ ){			;		}		elsif( /^.*[Uu]pdated.*:/ ){			# Probably some line like:			# Last Updated:  Tue Oct  8 04:30:50 EDT 1991			# skip it			next;		}		else {			printf( "Unmatched line: %s", $_ );		}	}	return( '', 0, 0, 0, 0 );}# Convert NetWare file access mode chars at the start of a DIR entry # into a Unix access number.sub netware_to_mode{	local( $kind ) = @_;	local( @kind, $c, $k );	# Ignore all but the mode characters inside []	$k = $kind;	$k =~ s,.*\[(.*)\].*,$1,;	@kind = split( //, $kind );	$mode = 0;		# init $mode to no access	foreach $c ( @kind ){		if( $c eq 'R' )	{$mode |= 0x644;}	## r/w r r		if( $c eq 'W' ) {$mode |= 0x222;}	## w   w w		if( $c eq 'F' ) {$mode |= 0x444;}	## r   r r		}	return $mode;}# --------------------- parse VMS dir output# for each file or directory line found return a tuple of# (pathname, size, time, type, mode)# pathname is a full pathname relative to the directory set by reset()# size is the size in bytes (this is always 0 for directories)# time is a Un*x time value for the file# type is "f" for a file, "d" for a directory and#         "l linkname" for a symlinksub lsparse'line_vms{	local( $fh ) = @_;	local( $non_crud, $perm_denied );	if( eof( $fh ) ){		return( "", 0, 0, 0 );	}	while( <$fh> ){		# Store listing		print main'STORE $_;		# Stomp on carriage returns		s/\015//g;		# I'm about to look at this at lot		study;		if( /^\s*$/ ){			next;		}		if( /^\s*Total of/i ){			# Just a size report ignore			next;		}		if( /\%RMS-E-PRV|insufficient privilege/i ){			# A permissions error - skip the line			next;		}		# Upper case is so ugly		if( ! $lsparse'vms_keep_case ){			tr/A-Z/a-z/;		}		# DISK$ANON:[ANONYMOUS.UNIX]		if( /^([^:]+):\[([^\]+]+)\]\s*$/ ){			# The directory name			# Use the Unix convention of /'s in filenames not			# .'s			$currdir = '/' . $2;			$currdir =~ s,\.,/,g;			$currdir =~ s,/+,/,g;			$currdir =~ s,^/$vms_strip,,;			if( $currdir eq '' ){				next;			}			$match = $currdir;			$match =~ s/([\+\(\)\[\]\*\?])/\\$1/g;#print ">>>match=$match currdir=$currdir\n";			return( substr( $currdir, 1 ), 0, 0, 'd', 0 );		}			# MultiNet FTP	# DSPD.MAN;1  9   1-APR-1991 12:55 [SG,ROSENBLUM] (RWED,RWED,RE,RE)	# CMU/VMS-IP FTP	# [VMSSERV.FILES]ALARM.DIR;1      1/3          5-MAR-1993 18:09		local( $dir, $file, $vers, $size, $lsdate, $got );		$got = 0;		# For now ignore user and mode		if( /^((\S+);(\d+))?\s+(\d+)\s+(\d+-\S+-\d+\s+\d+:\d+)/ ){			($file, $vers, $size, $lsdate) = ($2,$3,$4,$5);			$got = 1;		}		elsif( /^(\[([^\]]+)\](\S+);(\d+))?\s+\d+\/\d+\s+(\d+-\S+-\d+\s+\d+:\d+)\s*$/ ){			($dir,$file,$vers,$lsdate) = ($2,$3,$4,$5);			$got = 1;		}		# The sizes mean nothing under unix...		$size = 0;				if( $got ){			local( $time ) = &main'lstime_to_time( $lsdate );			local( $type ) = 'f';			local( $mode ) = 0444;			# Handle wrapped long filenames			if( $filename ne '' ){				$file = $filename;				$vers = $version;				if( $directory ){					$dir = $directory;				}			}			if( defined( $dir ) ){				$dir =~ s/\./\//g;				$file = $dir . '/' . $file;			}			$filename = '';			if( $file =~ /^(.*)\.dir(;\d+)?$/ ){				if( ! $vms_keep_dotdir ){					$file = $1 . $2;				}				$type = 'd';				$mode = 0555;			}			$lsparse'vers = $vers;#print "file=|$file| match=|$match| vms_strip=|$vms_strip|\n";			$file =~ s,^,/,;			$file =~ s,^/$match,,;			if( ! defined( $dir ) ){				$file = "$currdir/$file";			}			$file =~ s,^$vms_strip,,;			$file =~ s,/+,/,g;#print  "file=|$file|\n";			return( substr( $file, 1 ), $size, $time, $type, $mode );		}		elsif( /^\[([^\]]+)\](\S+);(\d+)\s*$/ ){			# If a filename is long then it is on a line by itself			# with the details on the next line			local( $d, $f, $v ) = ($1, $2, $3);			$d =~ s/\./\//g;			$directory = $d;			$filename = $f;			$version = $v;		}		elsif( /^(\S+);(\d+)\s*$/ ){			# If a filename is long then it is on a line by itself			# with the details on the next line			$filename = $1;			$version = $2;		}		else {			printf( "Unmatched line: %s", $_ );		}	}	return( '', 0, 0, 0, 0 );}# --------------------- parse output from dos ftp server# for each file or directory line found return a tuple of# (pathname, size, time, type, mode)# pathname is a full pathname relative to the directory set by reset()# size is the size in bytes (this is always 0 for directories)# time is a Un*x time value for the file# type is "f" for a file, "d" for a directory and#         "l linkname" for a symlinksub lsparse'line_dosftp{	local( $fh ) = @_;	while( 1 ){		if( $pending ){			$_ = $pending;			$pending = '';		}		else {			if( eof( $fh ) ){				return( "", 0, 0, 0 );			}			$_ = <$fh>;			# Store listing			print main'STORE $_;			# Ignore the summary at the end and blank lines			if( /^\d+ files?\./ || /^\s+$/ ){				next;			}		}		# Stomp on carriage returns		s/\015//g;		# I'm about to look at this at lot		study;		if( m|(\S+)\s+(\S+)?\s+(\d+):(\d+)\s+(\d+)/(\d+)/(\d+)\s*(.*)| ){			local( $file, $commasize, $hrs, $min, $mon, $day, $yr ) =				($1, $2, $3, $4, $5, $6, $7);			$pending = $8;			# TODO: fix hacky 19$yr			local( $lsdate ) = "$day-$mon-19$yr $hrs:$min";			local( $time ) = &main'lstime_to_time( $lsdate );			local( $type ) = '?';			local( $mode ) = 0;			local( $size ) = $commasize;			$size =~ s/,//g;			if( $file =~ m:(.*)/$: ){				$file = $1;				$type = 'd';					$size = 0;   # Don't believe the report size			}			else {				# (hopefully) a regular file				$type = 'f';			}						$currdir =~ s,/+,/,g;			$file =~ s,^/$match,,;			$file = "/$currdir/$file";			$file =~ s,/+,/,g;			return( substr( $file, 1 ), $size, $time, $type, $mode );		}		else {			printf( "Unmatched line: %s", $_ );		}	}	return( '', 0, 0, 0, 0 );}# --------------------- parse output from a slightly DOS-like dir command# for each file or directory line found return a tuple of# (pathname, size, time, type, mode)# pathname is a full pathname relative to the directory set by reset()# size is the size in bytes (this is always 0 for directories)# time is a Un*x time value for the file# type is "f" for a file, "d" for a directory and#         "l linkname" for a symlink# 03-16-94  06:29AM       <DIR>          .# 03-16-94  06:29AM       <DIR>          ..# 04-11-94  11:48PM       <DIR>          creative# 03-08-94  07:17AM                 5504 article.xfiles.intro# 02-28-94  11:44AM                 3262 article1.gillian.andersonsub lsparse'line_dosish{	local( $fh ) = @_;	while( 1 ){		if( eof( $fh ) ){			return( "", 0, 0, 0 );		}		$_ = <$fh>;		# Store listing		print main'STORE $_;		# Ignore blank lines		if( /^\s+$/ ){			next;		}		# Stomp on carriage returns		s/\015//g;		# I'm about to look at this at lot		study;		if( m,(\d+)-(\d+)-(\d+)\s+(\d+):(\d+)(AM|PM)\s+(\d+|<DIR>)\s+(\S.*), ){			local( $mon, $day, $yr, $hrs, $min, $ampm, $dir_or_size, $file ) =				($1, $2, $3, $4, $5, $6, $7, $8);			if( $file eq '.' || $file eq '..' ){				next;			}			$hrs += 12 if $ampm =~ /PM/;			if( $hrs == 12 || $hrs == 24 ){				$hrs -= 12;			}			# TODO: fix hacky 19$yr			local( $lsdate ) = "$day-$mon-19$yr $hrs:$min";			local( $time ) = &main'lstime_to_time( $lsdate );			local( $type ) = ($dir_or_size eq '<DIR>' ? 'd' : 'f');			local( $mode ) = 0;			local( $size ) = 0;			$size = $dir_or_size if $dir_or_size =~ /^\d/;			$currdir =~ s,/+,/,g;			$file =~ s,^/$match,,;			$file = "/$currdir/$file";			$file =~ s,/+,/,g;			return( substr( $file, 1 ), $size, $time, $type, $mode );		}		# Match starts of directories.		elsif( /^([\.\/\\]*.*):$/ ){			$dir = $1;			# Switch from dos to unix slashes.			$dir =~ s,\\,/,g;			if( $dir eq '.' ){				next;			}			elsif( $dir !~ /^\// ){				$currdir = "$here/$dir";			}			else {				$currdir = "$dir";			}			$currdir =~ s,/+,/,g;			$match = $currdir;			$match =~ s/([\+\(\)\[\]\*\?])/\\$1/g;			return( substr( $currdir, 1 ), 0, 0, 'd', 0 );		}		else {			printf( "Unmatched line: %s", $_ );		}	}	return( '', 0, 0, 0, 0 );}# --------------------- parse output from supertcp ftp server# for each file or directory line found return a tuple of# (pathname, size, time, type, mode)# pathname is a full pathname relative to the directory set by reset()# size is the size in bytes (this is always 0 for directories)# time is a Un*x time value for the file# type is "f" for a file, "d" for a directory and#         "l linkname" for a symlink# .               <DIR>           11-16-94        17:16# ..              <DIR>           11-16-94        17:16# INSTALL         <DIR>           11-16-94        17:17# CMT             <DIR>           11-21-94        10:17# DESIGN1.DOC          11264      05-11-95        14:20# README.TXT            1045      05-10-95        11:01# WPKIT1.EXE          960338      06-21-95        17:01# CMT.CSV                  0      07-06-95        14:56# .               <DIR>           11/16/94        17:16# ..              <DIR>           11/16/94        17:16# INSTALL         <DIR>           11/16/94        17:17# CMT             <DIR>           11/21/94        10:17# DESIGN1.DOC          11264      05/11/95        14:20# README.TXT            1045      05/10/95        11:01# WPKIT1.EXE          960338      06/21/95        17:01# CMT.CSV                  0      07/06/95        14:56sub lsparse'line_supertcp{    local( $fh ) = @_;    while( 1 ) {	if( $pending ){	    $_ = $pending;	    $pending = '';	}	else {	    if( eof( $fh ) ){		return( "", 0, 0, 0 );	    }	    $_ = <$fh>;	    # Store listing	    print main'STORE $_;	    # Ignore the summary at the end and blank lines	    if( /^\d+ files?\./ || /^\s+$/ ){		next;	    }	}	# Stomp on carriage returns	s/\015//g;	s/\s+$//;               # I'm about to look at this at lot	study;	local( $file, $dirsize, $date, $time ) = split(" ", $_, 4);	local( $mon, $day, $yr ) = split ( /[-\/]/, $date, 3);	if( defined $file ){	    next if ( $file eq '..' || $file eq '.' );	    $pending = $5;	    local( $lsdate ) = "$day-$mon-$yr $time";	    local( $time ) = &main'lstime_to_time( $lsdate );            local( $type ) = '?';	    local( $mode ) = 0;            if ( $dirsize eq '<DIR>' ) {               $type = 'd';               $size = 0;            }            else {               $type = 'f';	       $size = $dirsize;	       $size =~ s/,//g;            }	    $currdir =~ s,/+,/,g;	    $file =~ s,^/$match,,;	    $file = "/$currdir/$file";	    $file =~ s,/+,/,g;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色哟哟亚洲精品| 亚洲va韩国va欧美va| 亚洲一区二区三区国产| 久久成人免费日本黄色| 欧美亚洲一区三区| 国产精品欧美久久久久一区二区| 蜜桃视频在线一区| 欧美色图一区二区三区| 日本一区二区不卡视频| 免费欧美在线视频| 884aa四虎影成人精品一区| 亚洲美女淫视频| 成人不卡免费av| 欧美精品一区二区三| 日日夜夜免费精品| 欧美色视频在线| 亚洲一区二区美女| 97精品国产露脸对白| 国产精品视频yy9299一区| 国产一区二区精品久久| 日韩一区二区三区四区五区六区| 午夜久久久久久久久| 欧美艳星brazzers| 一区二区三区在线播| 在线观看亚洲一区| 亚洲一区二区三区小说| 欧美丝袜丝交足nylons| 亚洲综合色在线| 在线观看日韩一区| 亚洲一区二区美女| 538在线一区二区精品国产| 亚洲高清免费一级二级三级| 欧美日韩电影在线播放| 亚洲成人av资源| 欧美一激情一区二区三区| 日韩成人一级片| 欧美一区二区三区婷婷月色| 免费在线看成人av| 久久久久久久电影| 成人精品高清在线| 亚洲少妇30p| 欧美性大战久久| 免费视频最近日韩| 国产欧美日韩另类一区| 成人午夜电影小说| 亚洲精品va在线观看| 欧美精品在线观看一区二区| 蜜臀va亚洲va欧美va天堂 | 国产精品久久久久久久蜜臀| 成人免费精品视频| 一区二区三区四区视频精品免费| 欧美日韩的一区二区| 精品一区二区三区香蕉蜜桃 | 成人性生交大合| 亚洲蜜臀av乱码久久精品 | 26uuuu精品一区二区| 成熟亚洲日本毛茸茸凸凹| 依依成人精品视频| 日韩精品一区二区三区蜜臀 | 亚洲日韩欧美一区二区在线| 色综合色综合色综合| 午夜电影久久久| 国产女主播在线一区二区| 日本久久一区二区| 久久91精品国产91久久小草| 国产精品久久久久一区二区三区| 欧美亚洲禁片免费| 国产一区二区三区四区五区入口 | 欧美天天综合网| 国产一区二区看久久| 亚洲精品国产第一综合99久久| 日韩欧美国产不卡| 色素色在线综合| 精品一区二区免费在线观看| 亚洲欧美日韩一区二区| 精品成人a区在线观看| 欧美性欧美巨大黑白大战| 国产成人夜色高潮福利影视| 亚洲丶国产丶欧美一区二区三区| 亚洲国产精品激情在线观看| 4438x亚洲最大成人网| 91视频91自| 东方aⅴ免费观看久久av| 日韩不卡一区二区| 一区二区视频在线看| 中文一区二区完整视频在线观看| 日韩免费观看高清完整版在线观看| 在线影视一区二区三区| 国产999精品久久| 精品一区二区三区在线观看国产 | 亚洲欧美视频一区| 欧美国产成人在线| 欧美精品一区二区三区久久久| 69久久99精品久久久久婷婷| 91丨porny丨中文| 成人国产精品免费观看动漫| 国产精品自拍在线| 国产一区二区三区国产| 日本欧美一区二区三区乱码| 三级在线观看一区二区 | 懂色av一区二区夜夜嗨| 极品美女销魂一区二区三区 | 91极品视觉盛宴| 91在线无精精品入口| 成人免费看的视频| 国产91富婆露脸刺激对白| 久久99国内精品| 久久国产精品99精品国产 | 亚洲综合在线观看视频| 亚洲另类中文字| 亚洲欧美偷拍卡通变态| 亚洲精品国产一区二区精华液| 亚洲女人的天堂| 一区二区三区精品视频| 一区二区三区在线播| 亚洲五月六月丁香激情| 亚洲高清免费一级二级三级| 亚洲va欧美va人人爽午夜| 日韩不卡免费视频| 韩国视频一区二区| 国产尤物一区二区在线| 成人一级片在线观看| 91美女精品福利| 欧美日韩一区二区不卡| 91精品国产综合久久久久久久久久 | 成人免费毛片app| 欧美日韩精品电影| 91精品国产福利在线观看 | 亚洲欧美怡红院| 亚洲一区二区三区视频在线播放| 亚洲va天堂va国产va久| 久久99国产精品免费网站| 国产精品一级黄| 91网站在线观看视频| 欧美日韩一区二区三区视频 | 欧美色图第一页| 日韩免费看的电影| 中文字幕一区二区三区在线播放 | 亚洲免费资源在线播放| 五月天婷婷综合| 国内国产精品久久| 色综合久久久久久久| 欧美一区二区三区在线看| 国产欧美在线观看一区| 亚洲一区二区三区中文字幕在线| 美女一区二区在线观看| 9人人澡人人爽人人精品| 欧美日韩在线三级| 久久精品夜色噜噜亚洲a∨| 伊人色综合久久天天人手人婷| 麻豆精品新av中文字幕| 成人午夜大片免费观看| 3d成人动漫网站| 亚洲欧洲综合另类| 精久久久久久久久久久| 欧美中文字幕不卡| 国产午夜精品一区二区| 天堂蜜桃一区二区三区| 成人av动漫网站| 日韩三级免费观看| 一区二区三区不卡在线观看| 国产成人av在线影院| 欧美绝品在线观看成人午夜影视| 欧美经典一区二区三区| 日韩福利电影在线| 色综合婷婷久久| 欧美极品美女视频| 久久国产尿小便嘘嘘| 欧美主播一区二区三区| 久久久久久久精| 美女免费视频一区二区| 欧美午夜不卡视频| 中文字幕亚洲精品在线观看| 极品美女销魂一区二区三区 | 亚洲欧洲精品一区二区三区不卡| 免费看日韩a级影片| 在线视频欧美精品| 国产精品久久777777| 国产精品一区二区免费不卡| 91麻豆精品久久久久蜜臀 | 欧美色欧美亚洲另类二区| 亚洲人成7777| 99精品欧美一区二区蜜桃免费 | 成人精品免费看| 国产午夜亚洲精品午夜鲁丝片| 免费的成人av| 91精品国产麻豆| 青青草原综合久久大伊人精品优势| 在线国产电影不卡| 亚洲国产日韩精品| 91激情五月电影| 成人免费视频caoporn| 国产香蕉久久精品综合网| 国产在线不卡视频| 精品国产3级a| 国产一区二区三区电影在线观看| 亚洲精品在线观看网站| 久久精品二区亚洲w码| 欧美第一区第二区| 韩国毛片一区二区三区|