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

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

?? lsparse.pl

?? 站點映像程序
?? PL
?? 第 1 頁 / 共 3 頁
字號:
#-*-perl-*-# Copyright (C) 1990 - 1998   Lee McLoughlin## Permission to use, copy, and distribute this software and its# documentation for any purpose with or without fee is hereby granted,# provided that the above copyright notice appear in all copies and# that both that copyright notice and this permission notice appear# in supporting documentation.## Permission to modify the software is granted, but not the right to# distribute the modified code.  Modifications are to be distributed# as patches to released version.## This software is provided "as is" without express or implied warranty.## Parse "ls -lR" type listings# use lsparse'reset( dirname ) repeately## By Lee McLoughlin <lmjm@icparc.ic.ac.uk>## $Id: lsparse.pl,v 2.9 1998/05/29 19:04:19 lmjm Exp lmjm $# $Log: lsparse.pl,v $# Revision 2.9  1998/05/29 19:04:19  lmjm# Lots of changes.  See CHANGES since 2.8 file.## Revision 2.7  1994/06/10  18:28:24  lmjm# Another netware variant.# Another dosish system.# VM/CMS from Andrew Mc.## Revision 2.6  1994/04/29  20:11:06  lmjm# Overcome strange handling of $1 near a pattern match.## Revision 2.4  1994/01/26  15:43:00  lmjm# Added info-mac parser.# Cleanups to lsparse type lines.## Revision 2.3  1994/01/18  21:58:20  lmjm# Added F type.# mode handle 't' type.# Added line_lsparse.## Revision 2.2  1993/12/14  11:09:08  lmjm# Parse more unix ls listings.# Added dosftp parsing.# Added macos parsing.## Revision 2.1  1993/06/28  15:03:08  lmjm# Full 2.1 release### This has better be available via your PERLLIB environment variablerequire 'dateconv.pl';package lsparse;# The current directory is stripped off the# start of the returned pathname# $match is a pattern that matches thislocal( $match );# The filestore type being scanned$lsparse'fstype = 'unix';# Keep whatever case is on the remote system.  Otherwise lowercase it.$lsparse'vms_keep_case = '';# A name to report when errors occur$lsparse'name = 'unknown';# Wether to report subdirs when finding them in a directory# or when their details appear.  (If you report early then mirro might# recreate locally remote restricted directories.)$lsparse'report_subdir = 0;	# Report when finding details.# Name of routine to call to parse incoming listing lines$ls_line = '';# Set the directory that is being scanned and# check that the scan routing for this fstype exists# returns false if the fstype is unknown.sub lsparse'reset{	$here = $currdir = $_[0];	$now = time;	# Vms tends to give FULL pathnames reguardless of where	# you generate the dir listing from.	$vms_strip = $currdir;	$vms_strip =~ s,^/+,,;	$vms_strip =~ s,/+$,,;	$ls_line = "lsparse'line_$fstype";	return( defined( &$ls_line ) );}# See line_unix following routine for call/return details.# This calls the filestore specific parser.sub lsparse'line{	local( $fh ) = @_;	# ls_line is setup in lsparse'reset to the name of the function	local( $path, $size, $time, $type, $mode ) =		eval "&$ls_line( \$fh )";	# Zap any leading ./  (Somehow they still creep thru.)	$path =~ s:^(\./)+::;	return ($path, $size, $time, $type, $mode);}# --------------------- parse standard Unix ls 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_unix{	local( $fh ) = @_;	local( $non_crud, $perm_denied );	local( $d );	local( $dir );	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;		# Try and spot crud in the line and avoid it		# You can get:		# -rw-r--r-ls: navn/internett/RCS/nsc,v: Permission denied		# ls: navn/internett/RCS/bih,v: Permission denied		# -  1 43       daemon       1350 Oct 28 14:03 sognhs		# -rwcannot access .stuff/incoming		# cannot access .stuff/.cshrc		if( m%^(.*)/bin/ls:.*Permission denied% ||		   m%^(.*)ls:.*Permission denied% ||		   m%^(.*)ls:.*No such file or directory% ||		   m%^(.*)(cannot|can not) access % ){			if( ! $non_crud ){				$non_crud = $1;			}			next;		}		# Also try and spot non ls "Permission denied" messages.  These		# are a LOT harder to handle as the key part is at the end		# of the message.  For now just zap any line containing it		# and the first line following (as it will PROBABLY have been broken).		#		if( /.:\s*Permission denied/ ){			$perm_denied = 1;			next;		}		if( $perm_denied ){			$perm_denied = "";			warn "Warning: input corrupted by 'Permission denied'",				"errors, about line $. of $lsparse'name\n";			next;		}		# Not found's are like Permission denied's.  They can start part		# way through a line but with no way of spotting where they begin		if( /not found/ ){			$not_found = 1;			next;		}		if( $not_found ){			$not_found = "";			warn "Warning: input corrupted by 'not found' errors",				" about line $. of $lsparse'name\n";			next;		}				if( $non_crud ){			$_ = $non_crud . $_;			$non_crud = "";		}				if( /^([\-FlrwxsStTdDam]{10}).*\D(\d+)\s*([A-Za-z]{3}\s+\d+\s*(\d+:\d+|\d\d\d\d))\s+(.*)\n/ ){			local( $kind, $size, $lsdate, $file ) = ($1, $2, $3, $5);						if( $file eq '.' || $file eq '..' ){				next;			}			local( $time ) = &main'lstime_to_time( $lsdate );			local( $type ) = '?';			local( $mode ) = 0;			# This should be a symlink			if( $kind =~ /^l/ && $file =~ /(.*) -> (.*)/ ){				$file = $1;				$type = "l $2";			}			elsif( $kind =~ /^[\-F]/ ){				# (hopefully) a regular file				$type = 'f';			}			elsif( $kind =~ /^d/i ){				# Don't create private dirs when not				# using recurse_hard.				if( $report_subdirs ){					next;				}				$type = 'd';					$size = 0;   # Don't believe the report size			}						$mode = &chars_to_mode( $kind );			$currdir =~ s,/+,/,g;			$file =~ s,^/$match,,;			$file = "/$currdir/$file";			$file =~ s,/+,/,g;			return( substr( $file, 1 ), $size, $time, $type, $mode );		}		# Match starts of directories.  Try not to match		# directories whose names ending in :		elsif( /^([\.\/]*.*):$/ && ! /^[dcbsp].*\s.*\s.*:$/ ){			$dir = $1;			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 );		}		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;		}		elsif( /^([\.\/]*[^\s]*)/ ){			# Just for the export.lcs.mit.edu ls listing			$match = $currdir = "$1/";			$match =~ s/[\+\(\[\*\?]/\\$1/g;		}				else {			printf( "Unmatched line: %s", $_ );		}	}	return( '', 0, 0, 0, 0 );}# Convert the mode chars at the start of an ls-l entry into a numbersub chars_to_mode{	local( $chars ) = @_;	local( @kind, $c );	# Split and remove first char	@kind = split( //, $kind );	shift( @kind );	foreach $c ( @kind ){		$mode <<= 1;		if( $c ne '-' && $c ne 'S' && $c ne 't' && $c ne 'T' ){			$mode |= 1;		}	}	# check for "special" bits	# uid bit	if( /^...s....../i ){	    $mode |= 04000;	}	# gid bit	if( /^......s.../i ){	    $mode |= 02000;	}	# sticky bit	if( /^.........t/i ){	    $mode |= 01000;	}	return $mode;}# --------------------- parse dls output# dls is a descriptive ls that some sites use.# this parses the output of dls -dtR# 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_dls{	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*)\s+(\-|\=|\d+)\s+((\w\w\w\s+\d+|\d+\s+\w\w\w)\s+(\d+:\d+|\d\d\d\d))\s+(.+)\n/ ){			local( $file, $size, $lsdate, $description ) =				($1, $2, $3, $6);			$file =~ s/\s+$//;			local( $time, $type, $mode );						if( $file =~ m|/$| ){				# a directory				$file =~ s,/$,,;				$time = 0;				$type = 'd';				$mode = 0555;			}			else {				# a file				$time = &main'lstime_to_time( $lsdate );				$type = 'f';				$mode = 0444;			}			# Handle wrapped long filenames			if( $filename ne '' ){				$file = $filename;			}			$filename = '';			$file =~ s/\s*$//;			$file = "$currdir/$file";			$file =~ s,/+,/,g;			return( substr( $file, 1 ), $size, $time, $type, $mode );		}		elsif( /^(.*):$/ ){			if( $1 eq '.' ){				next;			}			elsif( $1 !~ /^\// ){				$currdir = "$here/$1/";			}			else {				$currdir = "$1/";			}			$filename = '';			$currdir =~ s,/+,/,g;			$match = $currdir;			$match =~ s/([\+\(\)\[\]\*\?])/\\$1/g;			return( substr( $currdir, 1 ), 0, 0, 'd', 0 );		}		else {			# If a filename is long then it is on a line by itself			# with the details on the next line			chop( $filename = $_ );		}	}	return( '', 0, 0, 0, 0 );}# --------------------- parse netware 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_netware{	local( $fh ) = @_;	if( eof( $fh ) ){		return( "", 0, 0, 0 );	}	while( <$fh> ){		# Store listing		print main'STORE $_;		# Stomp on carriage returns		s/\015//g;# Unix vs NetWare:#1234567890 __________.*_____________ d+  www dd  dddd (.*)\n#drwxr-xr-x   2 jrd      other        512 Feb 29  1992 vt100#   kind     			      size lsdate       file#123456789012sw+ ____.*_______\s+(\d+)   \s+  wwwsddsdd:dd\s+ (.*)\n  #- [R----F--] jrd                197928       Sep 25 15:19    kermit.exe#d [R----F--] jrd                   512       Oct 06 09:31    source#d [RWCEAFMS] jrd                   512       Sep 04 14:38    lwp# Another netware variant#d [R----F-]  1 carl                   512 Mar 12 15:47 txt# And another..#- [-RWCE-F-] mlm                   11820 Feb  3 93 12:00  drivers.doc# And another..#-[R----F-]  1 supervis      256 Nov 15 14:21 readme.txt		if( /^([d|l|\-]\s*\[[RWCEAFMS\-]+\])\s+(\d+\s+)?\S+\s+(\d+)\s*(\w\w\w\s+\d+\s*(\d+:\d+|\d\d\d\d))\s+(.*)\n/) {			local( $kind, $size, $lsdate, $file ) =						 ( $1, $3, $4, $6);			if( $file eq '.' || $file eq '..' ){				next;			}			local( $time ) = &main'lstime_to_time( $lsdate );			local( $type ) = '?';			local( $mode ) = 0;			# This should be a symlink			if( $kind =~ /^l/ && $file =~ /(.*) -> (.*)/ ){				$file = $1;				$type = "l $2";			}			elsif( $kind =~ /^-/ ){				# (hopefully) a regular file				$type = 'f';			}						$mode = &netware_to_mode( $kind );

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
白白色亚洲国产精品| 亚洲欧洲综合另类| 蜜臀av性久久久久av蜜臀妖精| 91精品福利在线| 亚洲一区二区三区视频在线播放| 99久久精品免费看国产| 一区二区日韩av| 欧美理论片在线| 韩国精品主播一区二区在线观看 | 18欧美亚洲精品| 成人av网站在线观看| 亚洲日本中文字幕区| 91电影在线观看| 免费日韩伦理电影| 精品国产乱码久久久久久1区2区| 国产乱国产乱300精品| 国产精品美女一区二区三区| 色婷婷久久久久swag精品| 亚洲成av人**亚洲成av**| 日韩片之四级片| 国产成人综合在线观看| 亚洲色图一区二区三区| 欧美乱妇15p| 国产白丝网站精品污在线入口 | 夜夜操天天操亚洲| 91精品国产欧美日韩| 国产69精品一区二区亚洲孕妇| 亚洲欧美视频一区| 日韩精品一区二区三区视频播放| 粉嫩蜜臀av国产精品网站| 亚洲自拍与偷拍| 亚洲精品一区二区三区福利| 99久久精品免费精品国产| 免费三级欧美电影| 亚洲精品少妇30p| 久久伊99综合婷婷久久伊| 国产.欧美.日韩| 日本成人中文字幕在线视频| 国产三级久久久| 91精品国产综合久久精品性色| 美女视频网站黄色亚洲| 亚洲欧洲成人自拍| 欧美tickling挠脚心丨vk| 色94色欧美sute亚洲线路一久 | 色成人在线视频| 国产剧情一区在线| 日本欧美在线看| 亚洲一区二区三区四区在线观看| 国产亚洲欧美色| 日韩欧美一级片| 欧美最猛黑人xxxxx猛交| 国产suv精品一区二区6| 久久精品国产网站| 午夜视频一区在线观看| 自拍av一区二区三区| 久久精品视频网| 日韩精品一区二区三区中文不卡| 欧美日韩国产高清一区| 91丨九色porny丨蝌蚪| 国产成人在线影院 | 欧美国产在线观看| 国产精品你懂的在线欣赏| 日韩免费观看2025年上映的电影 | 成人一级视频在线观看| 韩日欧美一区二区三区| 免费在线观看一区| 青娱乐精品在线视频| 天天色综合天天| 午夜精品成人在线视频| 亚洲香蕉伊在人在线观| 亚洲欧美日韩综合aⅴ视频| 亚洲图片另类小说| 综合精品久久久| 亚洲人成在线观看一区二区| 国产精品传媒入口麻豆| 国产精品久久久久一区二区三区| 日本一区二区三区免费乱视频| 亚洲精品在线电影| 2020国产精品| 国产精品婷婷午夜在线观看| 亚洲国产精华液网站w| 中文字幕不卡的av| 国产精品美女久久久久高潮| 中文字幕二三区不卡| 欧美国产精品专区| 亚洲欧洲av色图| 亚洲综合在线电影| 亚洲二区在线观看| 日本大胆欧美人术艺术动态| 经典三级视频一区| 成人精品国产福利| 91小视频免费观看| 欧美日韩卡一卡二| 日韩美女一区二区三区四区| www欧美成人18+| 国产精品理论在线观看| 一区二区三区蜜桃| 免费高清视频精品| 成人深夜在线观看| 欧洲av一区二区嗯嗯嗯啊| 日韩一级大片在线观看| 亚洲一区在线观看视频| 五月婷婷久久丁香| 国产乱子伦视频一区二区三区| 成人性生交大片免费看视频在线| 在线欧美小视频| 日韩欧美国产综合在线一区二区三区| 亚洲精品在线观| 亚洲一区二区视频在线| 激情五月播播久久久精品| 成人国产电影网| 欧美日本一道本在线视频| 久久青草欧美一区二区三区| 亚洲欧美视频在线观看视频| 久久超碰97中文字幕| 99精品国产91久久久久久| 欧美日韩激情在线| 国产精品免费视频一区| 日韩av不卡在线观看| 国产91对白在线观看九色| 777精品伊人久久久久大香线蕉| 亚洲精品一区二区三区四区高清 | 国产福利不卡视频| 日本黄色一区二区| 欧美tickling挠脚心丨vk| 亚洲精品成人悠悠色影视| 经典三级一区二区| 在线这里只有精品| 国产日韩在线不卡| 蜜臀国产一区二区三区在线播放| av电影在线观看一区| www国产成人免费观看视频 深夜成人网| 亚洲欧洲精品天堂一级| 国产一区91精品张津瑜| 欧美日本精品一区二区三区| 日本一区二区成人| 久久福利视频一区二区| 欧美日韩一区精品| 日韩美女视频一区二区 | 日韩精品乱码av一区二区| 不卡视频在线看| 精品成人一区二区三区| 五月婷婷激情综合网| 色就色 综合激情| 国产精品久久久久一区二区三区 | 欧美日韩卡一卡二| 亚洲欧美日韩电影| 成人免费观看视频| 亚洲精品一区二区三区在线观看| 日韩电影在线观看电影| 色综合视频在线观看| 中文字幕不卡在线观看| 国产精品一区二区久激情瑜伽| 欧美一二三四区在线| 亚瑟在线精品视频| 91激情在线视频| 亚洲欧美怡红院| 波多野结衣的一区二区三区| 久久久久久久久久久电影| 精东粉嫩av免费一区二区三区| 日韩一区二区三区免费观看| 天天亚洲美女在线视频| 欧美日韩dvd在线观看| 亚洲成年人网站在线观看| 欧美综合色免费| 亚洲国产精品欧美一二99| 在线精品观看国产| 亚洲国产裸拍裸体视频在线观看乱了 | 国产激情视频一区二区在线观看| 精品少妇一区二区三区免费观看 | 亚洲国产精品99久久久久久久久 | 国产一区二区在线看| 精品入口麻豆88视频| 久久精品国产亚洲a| 久久婷婷综合激情| 国产在线乱码一区二区三区| 欧美精品一区二区在线播放| 色综合夜色一区| 一区二区在线观看不卡| 欧美最新大片在线看 | 2021中文字幕一区亚洲| 加勒比av一区二区| www久久久久| 成人av在线资源网站| 日韩码欧中文字| 精品视频资源站| 久久激五月天综合精品| 国产区在线观看成人精品| 99国产精品久久| 亚洲h动漫在线| 久久婷婷国产综合国色天香| 国产麻豆一精品一av一免费 | 一区视频在线播放| 色婷婷亚洲精品| 日韩精品电影一区亚洲| 久久综合九色综合97婷婷女人| 成人在线视频一区| 亚洲一区二区在线视频| 欧美mv和日韩mv的网站| 波多野结衣中文一区|