This is part of the Bibliotheca Anonoma's initiative to save all the Madoka threads from /a/ into a Madoka Crate (#5) for eventual archival in the Internet Archive.
When saving, please follow the thread hierarchy. See "Anime/General Threads/Episode 1" for a good example of how pages are saved.
For more information, see this page.
This bash script (txt2dir.sh) turns a list of files into folders. It comes from the Arch Linux forums.
#!/bin/bash
IFS='
'
for _dir in $(cat "$1"); do
mkdir "$_dir"
done
The following command takes in a list of files, places a number in ascending order in front, and adds a dash after the number.
sed = Filelist.txt | sed 'N;s/\n/-/' > sed.txt && ./txt2dir.sh sed.txt && rm sed.txt