===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
unburden-home-dir-0.4.1.1/PITCHME.md-26-
unburden-home-dir-0.4.1.1/PITCHME.md:27:* `$HOME` on NFS?
unburden-home-dir-0.4.1.1/PITCHME.md-28-* Fear of wearing off your expensive SSD too fast?
##############################################
unburden-home-dir-0.4.1.1/README.md-21-
unburden-home-dir-0.4.1.1/README.md:22:* The idea-giving case are big workstation setups where `$HOME` is on
unburden-home-dir-0.4.1.1/README.md-23-  NFS and all those caches put an unnecessary burden (hence the name)
##############################################
unburden-home-dir-0.4.1.1/TODO.md-14-
unburden-home-dir-0.4.1.1/TODO.md:15:* `$XDG_` related stuff:
unburden-home-dir-0.4.1.1/TODO.md-16-
unburden-home-dir-0.4.1.1/TODO.md-17-  * Honor
unburden-home-dir-0.4.1.1/TODO.md:18:    [`$XDG_` variables](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables)
unburden-home-dir-0.4.1.1/TODO.md-19-    in `unburden-home-dir.list` for alternative locations of `.cache`
##############################################
unburden-home-dir-0.4.1.1/TODO.md-36-
unburden-home-dir-0.4.1.1/TODO.md:37:* Add warnings if either `$HOME` or `$TARGET` do not begin with a
unburden-home-dir-0.4.1.1/TODO.md-38-  slash. This can cause broken symlinks but may also break the test
##############################################
unburden-home-dir-0.4.1.1/bin/unburden-home-dir-268-        } else {
unburden-home-dir-0.4.1.1/bin/unburden-home-dir:269:            my $rc = system(qw(mv -v), $from, $to);
unburden-home-dir-0.4.1.1/bin/unburden-home-dir-270-            return !($? >> 8);
##############################################
unburden-home-dir-0.4.1.1/docs/configuration.md-77-           letter means "create it if it doesn't exist")
unburden-home-dir-0.4.1.1/docs/configuration.md:78:3. column: **Path** relative to `$HOME` to move off to some other
unburden-home-dir-0.4.1.1/docs/configuration.md-79-           location.
##############################################
unburden-home-dir-0.4.1.1/docs/howto.md-67-
unburden-home-dir-0.4.1.1/docs/howto.md:68:This will also set `$XDG_CACHE_HOME` to a subdirectory of
unburden-home-dir-0.4.1.1/docs/howto.md-69-unburden-home-dir's target directory.
##############################################
unburden-home-dir-0.4.1.1/docs/index.md-16-
unburden-home-dir-0.4.1.1/docs/index.md:17:* The idea-giving case are big workstation setups where `$HOME` is on
unburden-home-dir-0.4.1.1/docs/index.md-18-  NFS and all those caches put an unnecessary burden (hence the name)
##############################################
unburden-home-dir-0.4.1.1/docs/todo.md-14-
unburden-home-dir-0.4.1.1/docs/todo.md:15:* `$XDG_` related stuff:
unburden-home-dir-0.4.1.1/docs/todo.md-16-
unburden-home-dir-0.4.1.1/docs/todo.md-17-  * Honor
unburden-home-dir-0.4.1.1/docs/todo.md:18:    [`$XDG_` variables](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables)
unburden-home-dir-0.4.1.1/docs/todo.md-19-    in `unburden-home-dir.list` for alternative locations of `.cache`
##############################################
unburden-home-dir-0.4.1.1/docs/todo.md-36-
unburden-home-dir-0.4.1.1/docs/todo.md:37:* Add warnings if either `$HOME` or `$TARGET` do not begin with a
unburden-home-dir-0.4.1.1/docs/todo.md-38-  slash. This can cause broken symlinks but may also break the test
##############################################
unburden-home-dir-0.4.1.1/t/help-option.t-10-my $basedir = ($ENV{AUTOPKGTEST_TMP} || $ENV{ADTTMP}) ? '/usr' : dirname($0).'/..';
unburden-home-dir-0.4.1.1/t/help-option.t:11:my $dashdash_help = `perl $basedir/bin/unburden-home-dir --help`;
unburden-home-dir-0.4.1.1/t/help-option.t-12-is( $?, 0, 'unburden-home-dir --help exited with 0');
##############################################
unburden-home-dir-0.4.1.1/t/help-option.t-16-
unburden-home-dir-0.4.1.1/t/help-option.t:17:my $dash_h = `perl $basedir/bin/unburden-home-dir -h`;
unburden-home-dir-0.4.1.1/t/help-option.t-18-is( $?, 0, 'unburden-home-dir -h exited with 0');
##############################################
unburden-home-dir-0.4.1.1/t/lib/Test/UBH.pm-163-    my ($t, $cmd) = @_;
unburden-home-dir-0.4.1.1/t/lib/Test/UBH.pm:164:    ok( system($cmd . $t->shell_capture) == 0, "Call '$cmd'" );
unburden-home-dir-0.4.1.1/t/lib/Test/UBH.pm-165-    return;
##############################################
unburden-home-dir-0.4.1.1/t/lib/Test/UBH.pm-169-    my ($t, $cmd) = @_;
unburden-home-dir-0.4.1.1/t/lib/Test/UBH.pm:170:    ok( ! system($cmd . $t->shell_capture) == 0, "'$cmd' fails" );
unburden-home-dir-0.4.1.1/t/lib/Test/UBH.pm-171-    return;
##############################################
unburden-home-dir-0.4.1.1/t/unexpected-cases.t-107-dir_exists_ok($t->HOME.'/.fifo');
unburden-home-dir-0.4.1.1/t/unexpected-cases.t:108:ok( system('mkfifo '.$t->HOME.'/.fifo/blarg 1>&2') == 0,
unburden-home-dir-0.4.1.1/t/unexpected-cases.t-109-    "Created a fifo at ".$t->HOME.'/.fifo/blarg' );
##############################################
unburden-home-dir-0.4.1.1/t/version.t-16-
unburden-home-dir-0.4.1.1/t/version.t:17:my $debian_changelog_version = `head -1 $basedir/debian/changelog | awk -F'[ ()]+' '{print \$2}'`;
unburden-home-dir-0.4.1.1/t/version.t-18-chomp($debian_changelog_version);
unburden-home-dir-0.4.1.1/t/version.t-19-our $VERSION;
unburden-home-dir-0.4.1.1/t/version.t:20:my $script_version = `egrep '^our .VERSION' $basedir/bin/unburden-home-dir`;
unburden-home-dir-0.4.1.1/t/version.t:21:eval($script_version);
unburden-home-dir-0.4.1.1/t/version.t-22-
##############################################
unburden-home-dir-0.4.1.1/t/version.t-25-
unburden-home-dir-0.4.1.1/t/version.t:26:my $dashdash_version = `perl $basedir/bin/unburden-home-dir --version`;
unburden-home-dir-0.4.1.1/t/version.t-27-my $rc = $?;