===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-62-If you are sure that your working directory is somewhere below your project's root,
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd:63:use the `root$find_file()` function:
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-64-
##############################################
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-69-You can also
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd:70:construct an accessor to your root using the `root$make_fix_file()` function:
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-71-
##############################################
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-76-
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd:77:Note that `root_file()` is a *function* that works just like `$find_file()` but
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-78-will find the files even if the current working directory is outside your project:
##############################################
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-88-but cannot be sure of your current working directory,
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd:89:pass that absolute path to `root$make_fix_file()`:
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-90-
##############################################
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-302-
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd:303:This is a more robust alternative to `$find_file()`, because it *fixes* the project
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd:304:directory when `$make_fix_file()` is called, instead of searching for it every
r-cran-rprojroot-1.3-2/inst/doc/rprojroot.Rmd-305-time.  (For that reason it is also slightly faster, but I doubt this matters
##############################################
r-cran-rprojroot-1.3-2/NEWS.md-28-- Internal
r-cran-rprojroot-1.3-2/NEWS.md:29:    - The `$testfun` member of the `rprojroot` S3 class is now a list of functions instead of a function.
r-cran-rprojroot-1.3-2/NEWS.md-30-
##############################################
r-cran-rprojroot-1.3-2/R/criterion.R-65-  #'      returns a function that finds paths relative to the root.  For a
r-cran-rprojroot-1.3-2/R/criterion.R:66:  #'      criterion `cr`, the result of `cr$make_fix_file(".")(...)`
r-cran-rprojroot-1.3-2/R/criterion.R:67:  #'      is identical to `cr$find_file(...)`. The function created by
r-cran-rprojroot-1.3-2/R/criterion.R-68-  #'      `make_fix_file` can be saved to a variable to be more independent
##############################################
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-62-If you are sure that your working directory is somewhere below your project's root,
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd:63:use the `root$find_file()` function:
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-64-
##############################################
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-69-You can also
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd:70:construct an accessor to your root using the `root$make_fix_file()` function:
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-71-
##############################################
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-76-
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd:77:Note that `root_file()` is a *function* that works just like `$find_file()` but
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-78-will find the files even if the current working directory is outside your project:
##############################################
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-88-but cannot be sure of your current working directory,
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd:89:pass that absolute path to `root$make_fix_file()`:
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-90-
##############################################
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-302-
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd:303:This is a more robust alternative to `$find_file()`, because it *fixes* the project
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd:304:directory when `$make_fix_file()` is called, instead of searching for it every
r-cran-rprojroot-1.3-2/vignettes/rprojroot.Rmd-305-time.  (For that reason it is also slightly faster, but I doubt this matters
##############################################
r-cran-rprojroot-1.3-2/debian/tests/run-unit-test-6-if [ "$AUTOPKGTEST_TMP" = "" ] ; then
r-cran-rprojroot-1.3-2/debian/tests/run-unit-test:7:    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
r-cran-rprojroot-1.3-2/debian/tests/run-unit-test-8-    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM