Tags
亲和力网站 小狗钱钱 72小时法则 apache C CakePHP Capistrano Catalyst change filename Cpan css cygwin Database Directory Dreamweaver encoding ext2 Geshi heredoc httperf IP address IPv6 Joomfish Joomla Jquery Junction Kannel Linux MacOS Magento NTFS Oracle Perl PHP Phtml print Read File Regex Shell SqlServer2005 ssh Test touch Ubuntu Windows
Tag Archives: Read File
Get file list in php
/** * Usage : * $HowToSearch – Specifies the search method. * There are two options: BY_EXTENSION, or BY_EXPRESSION. * $Condition – This specifies the search condition. * If you are using the BY_EXTENSION method, … Continue reading
Perl read last n lines of a file
sub last_x_lines { my ($filename, $lineswanted) = @_; my ($line, $filesize, $seekpos, $numread, @lines); open F, $filename or die “Can’t read $filename: $!\n”; $filesize = -s $filename; … Continue reading