===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-shell-quote-1.7.2/readme.markdown-106-
node-shell-quote-1.7.2/readme.markdown:107:Interpolate embedded bash-style `$VARNAME` and `${VARNAME}` variables with
node-shell-quote-1.7.2/readme.markdown-108-the `env` object which like bash will replace undefined variables with `""`.
##############################################
node-shell-quote-1.7.2/test/parse.js-10-    t.same(parse('a b\\ c d'), [ 'a', 'b c', 'd' ]);
node-shell-quote-1.7.2/test/parse.js:11:    t.same(parse('\\$beep bo\\`op'), [ '$beep', 'bo`op' ]);
node-shell-quote-1.7.2/test/parse.js-12-    t.same(parse('echo "foo = \\"foo\\""'), [ 'echo', 'foo = "foo"' ]);