find . -type d -print0 > dirs.txt find . -type f -print0 > files.txt cat < dirs.txt | while read in; do mkdir “$in”;done; cat files.txt | while read FILENAMES; do touch “$FILENAMES”; done started working on a script to do this but for now there is an archive i made here https://netpipe.ca/aha/programs.tar.gz
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed