File: Command.pm

package info (click to toggle)
cil 0.07.00-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 736 kB
  • sloc: perl: 1,897; makefile: 47
file content (17 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package CIL::Command;

use strict;
use warnings;

sub name {
    my $self = shift;

    my $name = lc( ref $self || $self );

    $name =~ s/^CIL::Command:://i;

    return $name;
}


'end of package CIL::Command';