You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
299 B
26 lines
299 B
<?php
|
|
|
|
|
|
|
|
class APT extends PKG_MANAGER
|
|
{
|
|
|
|
function install() {
|
|
$this->cmd = 'apt-get install '.$this->pkg ;
|
|
$this->execute_local();
|
|
|
|
}
|
|
|
|
|
|
function execute_local() {
|
|
$output = array();
|
|
$res = exec( $this->cmd, $output, $return );
|
|
$this->res = $output;
|
|
print_r( $this->res );
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|