===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
ugrep-3.0.5+dfsg/README.md-254-`/usr/local/lib`, causing a library load error when running `ugrep`.  To
ugrep-3.0.5+dfsg/README.md:255:correct this, add `export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"` to
ugrep-3.0.5+dfsg/README.md-256-your `~/.bashrc` file.  Or run `sudo ldconfig /usr/local/lib`.
##############################################
ugrep-3.0.5+dfsg/README.md-2003-one filter, which can be accomplished with a shell script containing the line
ugrep-3.0.5+dfsg/README.md:2004:`tool1 $1; tool2 $1`.  This filters the file argument `$1` with `tool1`
ugrep-3.0.5+dfsg/README.md-2005-followed by `tool2` to produce combined output to search for pattern matches.
ugrep-3.0.5+dfsg/README.md:2006:Likewise, we can use a script with the line `tool1 $1 | tool2` to stack two
ugrep-3.0.5+dfsg/README.md-2007-filters `tool1` and `tool2`.
##############################################
ugrep-3.0.5+dfsg/README.md-2795----------------- | -----------------------------
ugrep-3.0.5+dfsg/README.md:2796:`--format`       | `'%[,]$%H%N%K%B%V%~%u'`
ugrep-3.0.5+dfsg/README.md-2797-
##############################################
ugrep-3.0.5+dfsg/README.md-2802-`--format-begin` | `'['`
ugrep-3.0.5+dfsg/README.md:2803:`--format-open`  | `'%,%~  {%~    %[,%~    ]$%["file": ]H"matches": ['`
ugrep-3.0.5+dfsg/README.md:2804:`--format`       | `'%,%~      { %[, ]$%["line": ]N%["column": ]K%["offset": ]B"match": %J }%u'`
ugrep-3.0.5+dfsg/README.md-2805-`--format-close` | `'%~    ]%~  }'`
##############################################
ugrep-3.0.5+dfsg/README.md-2812-`--format-begin` | `'<grep>%~'`
ugrep-3.0.5+dfsg/README.md:2813:`--format-open`  | `'  <file%[]$%[ name=]H>%~'`
ugrep-3.0.5+dfsg/README.md:2814:`--format`       | `'    <match%[\"]$%[ line=\"]N%[ column=\"]K%[ offset=\"]B>%X</match>%~%u'`
ugrep-3.0.5+dfsg/README.md-2815-`--format-close` | `'  </file>%~'`
##############################################
ugrep-3.0.5+dfsg/tests/gen.sh-84-for PAT in '' 'Hello' '\w+\s+\S+' '\S\n\S' 'nomatch' ; do
ugrep-3.0.5+dfsg/tests/gen.sh:85:  FN=`echo "Hello_$PAT" | tr -Cd '[:alnum:]_'`
ugrep-3.0.5+dfsg/tests/gen.sh-86-  for OUT in '' '-I' '-W' '-X' ; do
##############################################
ugrep-3.0.5+dfsg/tests/gen.sh-158-for PAT in '\.' 'et' 'hendrerit' 'aliquam' 'sit amet aliquam' 'Nunc hendrerit at metus sit amet aliquam' 'adip[a-z]{1,}' 'adip[a-z]{4,}' 'adip[a-z]{6}' '[a-z]+' 'a[a-z]+' 'ad[a-z]+' 'adi[a-z]+' ; do
ugrep-3.0.5+dfsg/tests/gen.sh:159:  FN=`echo "archive_$PAT" | tr -Cd '[:alnum:]_'`
ugrep-3.0.5+dfsg/tests/gen.sh-160-  $UG -z -co "$PAT" archive.gz > out/$FN-co.gz.out
##############################################
ugrep-3.0.5+dfsg/tests/verify.sh-169-for PAT in '' 'Hello' '\w+\s+\S+' '\S\n\S' 'nomatch' ; do
ugrep-3.0.5+dfsg/tests/verify.sh:170:  FN=`echo "Hello_$PAT" | tr -Cd '[:alnum:]_'`
ugrep-3.0.5+dfsg/tests/verify.sh-171-  for OUT in '' '-I' '-W' '-X' ; do
##############################################
ugrep-3.0.5+dfsg/tests/verify.sh-302-for PAT in '\.' 'et' 'hendrerit' 'aliquam' 'sit amet aliquam' 'Nunc hendrerit at metus sit amet aliquam' 'adip[a-z]{1,}' 'adip[a-z]{4,}' 'adip[a-z]{6}' '[a-z]+' 'a[a-z]+' 'ad[a-z]+' 'adi[a-z]+' ; do
ugrep-3.0.5+dfsg/tests/verify.sh:303:  FN=`echo "archive_$PAT" | tr -Cd '[:alnum:]_'`
ugrep-3.0.5+dfsg/tests/verify.sh-304-  printf .