__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
#!/usr/bin/perl
# This file was preprocessed, do not edit!


package Debconf::FrontEnd::Editor;
use warnings;
use strict;
use Debconf::Encoding q(wrap);
use Debconf::TmpFile;
use Debconf::Gettext;
use base qw(Debconf::FrontEnd::ScreenSize);

my $fh;


sub init {
	my $this=shift;

	$this->SUPER::init(@_);
	$this->interactive(1);
}


sub comment {
	my $this=shift;
	my $comment=shift;

	print $fh wrap('# ','# ',$comment);
	$this->filecontents(1);
}


sub divider {
	my $this=shift;

	print $fh ("\n".('#' x ($this->screenwidth - 1))."\n");
}


sub item {
	my $this=shift;
	my $name=shift;
	my $value=shift;

	print $fh "$name=\"$value\"\n\n";
	$this->filecontents(1);
}


sub go {
	my $this=shift;
	my @elements=@{$this->elements};
	return 1 unless @elements;

	$fh = Debconf::TmpFile::open('.sh');

	$this->comment(gettext("You are using the editor-based debconf frontend to configure your system. See the end of this document for detailed instructions."));
	$this->divider;
	print $fh ("\n");

	$this->filecontents('');
	foreach my $element (@elements) {
		$element->show;
	}

	if (! $this->filecontents) {
		Debconf::TmpFile::cleanup();
		return 1;
	}

	$this->divider;
	$this->comment(gettext("The editor-based debconf frontend presents you with one or more text files to edit. This is one such text file. If you are familiar with standard unix configuration files, this file will look familiar to you -- it contains comments interspersed with configuration items. Edit the file, changing any items as necessary, and then save it and exit. At that point, debconf will read the edited file, and use the values you entered to configure the system."));
	print $fh ("\n");
	close $fh;

	my $editor=$ENV{EDITOR} || $ENV{VISUAL} || '/usr/bin/editor';
	system "$editor ".Debconf::TmpFile->filename;

	my %eltname=map { $_->question->name => $_ } @elements;
	open (my $in, "<", Debconf::TmpFile::filename());
	while (<$in>) {
		next if /^\s*#/;

		if (/(.*?)="(.*)"/ && $eltname{$1}) {
			$eltname{$1}->value($2);
		}
	}
	close $in;

	Debconf::TmpFile::cleanup();

	return 1;
}


sub screenwidth {
	my $this=shift;

	$Debconf::Encoding::columns=$this->SUPER::screenwidth(@_);
}


1

Filemanager

Name Type Size Permission Actions
Dialog.pm File 7.65 KB 0644
Editor.pm File 2.13 KB 0644
Gnome.pm File 7.34 KB 0644
Kde.pm File 2.04 KB 0644
Noninteractive.pm File 744 B 0644
Passthrough.pm File 6.98 KB 0644
Readline.pm File 3.57 KB 0644
ScreenSize.pm File 892 B 0644
Teletype.pm File 1.54 KB 0644
Text.pm File 166 B 0644
Web.pm File 2.6 KB 0644
Filemanager