===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/Basic.pm-589-                    my $pushed = pushd($subdir);
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/Basic.pm:590:                    system( $^X, "-I$cwd/lib", "-I$cwd/t/lib", "$cwd/bin/tidyall", 'foo.txt' );
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/Basic.pm-591-                };
##############################################
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-35-    my $committed = sub {
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm:36:        $stdout = capture_stdout { system( sprintf( 'svn status %s', $work_dir ) ) };
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-37-        unlike( $stdout, qr/\S/, 'committed' );
##############################################
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-40-    my $uncommitted = sub {
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm:41:        $stdout = capture_stdout { system( sprintf( 'svn status %s', $work_dir ) ) };
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-42-        like( $stdout, qr/^M/, 'uncommitted' );
##############################################
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-91-    $stderr
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm:92:        = capture_stderr { system( sprintf( q{svn -q commit -m "changed" %s}, $foo_txt ) ) };
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-93-    like( $stderr, qr/1 file did not pass tidyall check/ );
##############################################
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-101-    $stderr = capture_stderr {
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm:102:        system( sprintf( q{svn -q commit -m "changed" %s %s}, $foo_txt, $bar_dat ) );
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-103-    };
##############################################
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-108-    $stderr = capture_stderr {
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm:109:        system( sprintf( q{svn -q commit -m "NO TIDYALL - emergency fix!" %s}, $foo_txt ) );
libcode-tidyall-perl-0.67/t/lib/TestFor/Code/TidyAll/SVN.pm-110-    };
##############################################
libcode-tidyall-perl-0.67/lib/Code/TidyAll/Git/Prereceive.pm-148-    my ( $self, $file, $commit ) = @_;
libcode-tidyall-perl-0.67/lib/Code/TidyAll/Git/Prereceive.pm:149:    my ( $contents, $error ) = capture { system( $self->git_path, 'show', "$commit:$file" ) };
libcode-tidyall-perl-0.67/lib/Code/TidyAll/Git/Prereceive.pm-150-    return $contents;