文件操作 - parent.pm
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/x86_64-linux-gnu/perl-base/parent.pm
编辑文件内容
package parent; use strict; our $VERSION = '0.238'; sub import { my $class = shift; my $inheritor = caller(0); if ( @_ and $_[0] eq '-norequire' ) { shift @_; } else { for ( my @filename = @_ ) { s{::|'}{/}g; require "$_.pm"; # dies if the file is not found } } { no strict 'refs'; push @{"$inheritor\::ISA"}, @_; # dies if a loop is detected }; }; 1; __END__
修改文件时间
将文件时间修改为当前时间的前一年
删除文件