✏️ 正在编辑: Base.pm
路径:
/usr/share/perl5/Debconf/Base.pm
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::Base; use Debconf::Log ':all'; use strict; sub new { my $proto = shift; my $class = ref($proto) || $proto; my $this=bless ({@_}, $class); $this->init; return $this; } sub init {} sub AUTOLOAD { (my $field = our $AUTOLOAD) =~ s/.*://; no strict 'refs'; *$AUTOLOAD = sub { my $this=shift; return $this->{$field} unless @_; return $this->{$field}=shift; }; goto &$AUTOLOAD; } sub DESTROY { } 1
💾 保存文件
← 返回文件管理器