okfn / opendefinition

Open Definition source
https://opendefinition.org/
Creative Commons Attribution 4.0 International
109 stars 123 forks source link

Copy assets.okfn.org items used locally, locally #144

Closed mlinksva closed 8 years ago

mlinksva commented 8 years ago

Fixes #126

Mostly accomplished with two unpolished one-liners:

  find * -type f |xargs grep assets.okfn | perl -nle '/(http:\/\/assets.okfn.org\/[\w\/.-]+)/; print $1'  |xargs -n1 wget -r -l 1
  find * -type f |xargs grep -l assets.okfn | xargs perl -pi -e 's/(http:)*\/\/assets.okfn.org/\/assets.okfn.org/g'