===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
lua-apr-0.23.2.dfsg/Makefile-203-		| sed "s/{{DATE}}/`export LANG=; date '+%B %d, %Y'`/" \
lua-apr-0.23.2.dfsg/Makefile:204:		| sed "s/{{HASH}}/`md5sum $(PACKAGE).zip | cut '-d ' -f1 `/" \
lua-apr-0.23.2.dfsg/Makefile-205-		> lua-apr-$(VERSION)-$(RELEASE).rockspec
##############################################
lua-apr-0.23.2.dfsg/etc/buildbot.lua-150-  local server = assert(apr.socket_create('tcp', 'inet'))
lua-apr-0.23.2.dfsg/etc/buildbot.lua:151:  local localhost = apr.host_to_addr(apr.hostname_get())
lua-apr-0.23.2.dfsg/etc/buildbot.lua-152-  assert(server:bind('*', port))
##############################################
lua-apr-0.23.2.dfsg/src/dbd.c-750- * for full list) in place of database specific parameter syntax (e.g. for
lua-apr-0.23.2.dfsg/src/dbd.c:751: * PostgreSQL, this would be `$1`, `$2`, for SQLite3 this would be `?`, etc.).
lua-apr-0.23.2.dfsg/src/dbd.c-752- * For instance: `SELECT name FROM customers WHERE name = %s` would be a query
##############################################
lua-apr-0.23.2.dfsg/src/io_net.c-172-
lua-apr-0.23.2.dfsg/src/io_net.c:173:/* apr.host_to_addr(hostname [, family]) -> ip_address, ... {{{1
lua-apr-0.23.2.dfsg/src/io_net.c-174- *
##############################################
lua-apr-0.23.2.dfsg/src/io_net.c-183- *     '173.194.65.104' '173.194.65.106' '173.194.65.147' '173.194.65.103' '173.194.65.105' '173.194.65.99'
lua-apr-0.23.2.dfsg/src/io_net.c:184: *     > = apr.host_to_addr('ipv6.google.com', 'inet6')
lua-apr-0.23.2.dfsg/src/io_net.c-185- *     '2a00:1450:8005::67'
##############################################
lua-apr-0.23.2.dfsg/src/io_net.c-187-
lua-apr-0.23.2.dfsg/src/io_net.c:188:int lua_apr_host_to_addr(lua_State *L)
lua-apr-0.23.2.dfsg/src/io_net.c-189-{
##############################################
lua-apr-0.23.2.dfsg/src/lua_apr.h-347-int lua_apr_hostname_get(lua_State*);
lua-apr-0.23.2.dfsg/src/lua_apr.h:348:int lua_apr_host_to_addr(lua_State*);
lua-apr-0.23.2.dfsg/src/lua_apr.h-349-int lua_apr_addr_to_host(lua_State*);
##############################################
lua-apr-0.23.2.dfsg/src/proc.c-278- *  - `'program/env'`: Invoke the program directly, replicating our environment
lua-apr-0.23.2.dfsg/src/proc.c:279: *  - `'program/env/path'`: Find program in `$PATH`, replicating our environment
lua-apr-0.23.2.dfsg/src/proc.c-280- */
##############################################
lua-apr-0.23.2.dfsg/test/io_file.lua-156-  helpers.writefile(tempname, testdata)
lua-apr-0.23.2.dfsg/test/io_file.lua:157:  local test_buffer = require(((...):gsub('io_file$', 'io_buffer')))
lua-apr-0.23.2.dfsg/test/io_file.lua-158-  test_buffer(tempname, assert(apr.file_open(tempname, 'r')))
##############################################
lua-apr-0.23.2.dfsg/test/io_net.lua-18-
lua-apr-0.23.2.dfsg/test/io_net.lua:19:-- Test apr.hostname_get(), apr.host_to_addr() and apr.addr_to_host(). {{{1
lua-apr-0.23.2.dfsg/test/io_net.lua-20-local hostname = assert(apr.hostname_get())
lua-apr-0.23.2.dfsg/test/io_net.lua-21-local rdns_ok = false
lua-apr-0.23.2.dfsg/test/io_net.lua:22:for i, address in ipairs { assert(apr.host_to_addr(hostname)) } do
lua-apr-0.23.2.dfsg/test/io_net.lua-23-  if apr.addr_to_host(address) then
##############################################
lua-apr-0.23.2.dfsg/test/shm.lua-44--- Execute buffered I/O tests.
lua-apr-0.23.2.dfsg/test/shm.lua:45:local test_buffer = require(((...):gsub('shm$', 'io_buffer')))
lua-apr-0.23.2.dfsg/test/shm.lua-46-test_buffer(tmp_path, shm_file)