Skip to content

Instantly share code, notes, and snippets.

@dioxias
dioxias / download_subreddit_wiki.sh
Created January 20, 2023 00:11
This bash script helps downloading a whole subreddit wiki. Thanks to u/ThePixelHunter (https://www.reddit.com/user/ThePixelHunter/) for the original script adapted to work on Windows machine with added line 10.
#! /bin/bash
set -x
# Requires: bash coreutils curl jq
USER_AGENT='superagent/1.0'
EXPORTDIR="exports"
while read -r line; do
SUBREDDIT="$line"
SUBREDDIT=`echo $SUBREDDIT | sed 's/\\r//g'`