Posterous Backup
15 Apr 2013Posterous.com is due to shutdown at the end of April 2013. If your after a simple way to backup a Posterous site the below command will download your Posterous site as static html
wget -r -l inf -k -E -p -nc http://yourblog.posterous.com/
The options used are:
- -rrecursive
- -linf infinite depth
- -ksuffix html files with .html
- -Eupdate the saved files with links to local files
- -pdownload page resources
- -ncdon’t redownload urls more than once
This command won’t download all images (ones hostes on a different CDN) but it will download the majority of your site fine
