Advertisement
Guest User

Untitled

a guest
Apr 27th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $ wget -Avcf -r -np -l0 --no-check-certificate -e robots=off --user=user
  2. --password='password' https://cloud.domain.com/foo/carddav
  3.  
  4. grep ".vcf" index.html | awk -F"href=" '{print $2}' | awk -F" '{print $2}' > ALL_VCF_FILES.lst
  5. for elt in `cat ALL_VCF_FILES.lst`
  6. do
  7. wget https://cloud.some_domain.com/remote.php/carddav/addressbooks/your_name/$elt
  8. done
  9. rm ALL_VCF_FILES.lst index.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement