From daf84d472c91f09dd16820bdee43482dea412c4b Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Tue, 12 Mar 2024 00:13:06 +0000 Subject: [PATCH] Update cheatsheets --- tldr/expand | 4 ++-- tldr/waymore | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 tldr/waymore diff --git a/tldr/expand b/tldr/expand index 2553d565..9d673743 100644 --- a/tldr/expand +++ b/tldr/expand @@ -22,8 +22,8 @@ source: https://github.com/tldr-pages/tldr.git - Have tabs a certain number of characters apart, not 8: -`expand -t={{number}} {{path/to/file}}` +`expand -t {{number}} {{path/to/file}}` - Use a comma separated list of explicit tab positions: -`expand -t={{1,4,6}}` +`expand -t {{1,4,6}}` diff --git a/tldr/waymore b/tldr/waymore new file mode 100644 index 00000000..e9e83d0c --- /dev/null +++ b/tldr/waymore @@ -0,0 +1,26 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# waymore + +> Fetch URLs of a domain from Wayback Machine, Common Crawl, Alien Vault OTX, URLScan, and VirusTotal. +> Note: Unless specified, output is dumped into the `results/` directory where waymore's `config.yml` resides (by default in `~/.config/waymore/`). +> More information: . + +- Search for URLs of a domain (output will typically be in `~/.config/waymore/results/`): + +`waymore -i {{example.com}}` + +- Limit search results to only include a list of URLs for a domain and store outputs to the specified file: + +`waymore -mode U -oU {{path/to/example.com-urls.txt}} -i {{example.com}}` + +- Only output the content bodies of URLs and store outputs to the specified directory: + +`waymore -mode R -oR {{path/to/example.com-url-responses}} -i {{example.com}}` + +- Filter the results by specifying date ranges: + +`waymore -from {{YYYYMMDD|YYYYMM|YYYY}} -to {{YYYYMMDD|YYYYMM|YYYY}} -i {{example.com}}`