===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
lua-cosmo-13.01.30/configure-16-
lua-cosmo-13.01.30/configure:17:lua_bin=`which $lua`
lua-cosmo-13.01.30/configure:18:lua_bin_dir=`dirname $lua_bin`
lua-cosmo-13.01.30/configure-19-
lua-cosmo-13.01.30/configure:20:lua_root=`dirname $lua_bin_dir`
lua-cosmo-13.01.30/configure-21-
##############################################
lua-cosmo-13.01.30/doc/cosmo.md-71-Note that the template is a string that marks where values should
lua-cosmo-13.01.30/doc/cosmo.md:72:go. We call a template variable like `$rank` a *selector*, and `rank`
lua-cosmo-13.01.30/doc/cosmo.md-73-is the selector's name. The table passed to `cosmo.fill` is the
lua-cosmo-13.01.30/doc/cosmo.md-74- *environment*, and it provides the
lua-cosmo-13.01.30/doc/cosmo.md:75:values. `$rank` will get replaced by `value.rank` ("Ace") and `$suit`
lua-cosmo-13.01.30/doc/cosmo.md-76-will get replaced by `value.suit` ("Spades").
##############################################
lua-cosmo-13.01.30/doc/cosmo.md-86-A selector can be either a string or a Lua expression in parenthesis,
lua-cosmo-13.01.30/doc/cosmo.md:87:like `$("foo" .. "bar")` is replaced by `foobar` in the template. Any
lua-cosmo-13.01.30/doc/cosmo.md-88-variables in the expression are looked-up in the current template
lua-cosmo-13.01.30/doc/cosmo.md:89:environment, so `$(foo)` is the same as `$foo`, and `$(rank .. suit)`
lua-cosmo-13.01.30/doc/cosmo.md-90-would be replaced by `AceSpades` in the previous example.