From 5e256f4dbfaf6ca792cdaa99c8371dff12054d42 Mon Sep 17 00:00:00 2001 From: Michael Bianco Date: Fri, 4 Aug 2023 16:33:27 -0600 Subject: [PATCH] docs: simple shell download script for necessary core files --- src/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/README.md b/src/README.md index 354b15cca..9f9433187 100644 --- a/src/README.md +++ b/src/README.md @@ -50,3 +50,10 @@ Wappalyzer.analyze({ console.log(results) }) ``` + +Here's a shell script to download all of the necessary files referenced in the above example: + +```shell +http --follow https://raw.githubusercontent.com/wappalyzer/wappalyzer/master/src/categories.json > categories.json +http --follow https://github.com/wappalyzer/wappalyzer/archive/refs/heads/master.tar.gz | tar -xz --strip-components=2 'wappalyzer-master/src/technologies' +```