Como alternativa ao buggy httrack
, por que não usar wget
?
domain="theravingrick.blogspot.com"
wget -e robots=off -r --no-parent --reject "search?*" "http://${domain}"
find "$domain" -type f -exec sed -i "s/http:\/\/${domain}\///g" {} \;
Estou me preparando para baixar meus blogs usando o Httrack. Toda vez que eu tentei, recebi esta mensagem de erro:
**MIRROR ERROR!**
HTTrack has detected that the current mirror is empty. If it was an update, the previous mirror has been restored. Reason: the first page(s) either could not be found, or a connection problem occured.
=> Ensure that the website still exist, and/or check your proxy setting! <=
Acho que não é possível baixar nenhum blog do blogger com esse problema.
Alguém sabe como baixar um blog com este programa? Muito obrigado.
Como alternativa ao buggy httrack
, por que não usar wget
?
domain="theravingrick.blogspot.com"
wget -e robots=off -r --no-parent --reject "search?*" "http://${domain}"
find "$domain" -type f -exec sed -i "s/http:\/\/${domain}\///g" {} \;