#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:
package
Rex::Interface::Shell::Ash;
use
strict;
use
warnings;
our
$VERSION
=
'1.12.0.1'
;
# TRIAL VERSION
sub
new {
my
$class
=
shift
;
my
$proto
=
ref
(
$class
) ||
$class
;
my
$self
=
$proto
->SUPER::new(
@_
);
bless
(
$self
,
$class
);
return
$self
;
}
1;