===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
libautobox-core-perl-1.33/README-188-
libautobox-core-perl-1.33/README:189:    Runs $string as a command just enclosing it backticks, as in `$string`.
libautobox-core-perl-1.33/README-190-
##############################################
libautobox-core-perl-1.33/Makefile.PL-14-    AUTHOR             => 'Scott Walters scott@slowass.net',
libautobox-core-perl-1.33/Makefile.PL:15:    (eval($ExtUtils::MakeMaker::VERSION) >= 6.31 ? (LICENSE => 'perl') : ()),
libautobox-core-perl-1.33/Makefile.PL-16-    CONFIGURE_REQUIRES => {
##############################################
libautobox-core-perl-1.33/lib/autobox/Core.pm-259-
libautobox-core-perl-1.33/lib/autobox/Core.pm:260:Runs $string as a command just enclosing it backticks, as in C<`$string`>.
libautobox-core-perl-1.33/lib/autobox/Core.pm-261-
##############################################
libautobox-core-perl-1.33/lib/autobox/Core.pm-1291-sub system     { CORE::system @_; }
libautobox-core-perl-1.33/lib/autobox/Core.pm:1292:sub backtick   { `$_[0]`; }
libautobox-core-perl-1.33/lib/autobox/Core.pm:1293:sub qx         { `$_[0]`; }     # per #16, "backtick should probably be called qx"
libautobox-core-perl-1.33/lib/autobox/Core.pm-1294-