Open skramm opened 9 months ago
I noticed some (6) templates still had links in the file base.html on http://alexis.notmyidea.org/pelican/ I wrote and ran a small bash script to replace all of them with http://getpelican.com, globally:
base.html
find . -type f -exec grep -l alexis.notmyidea {} \; >/tmp/pelicanfiles for a in $(cat /tmp/pelicanfiles) do echo $a sed 's/alexis.notmyidea.org\/pelican/getpelican.com/g' $a >${a}_NEW mv ${a}_NEW $a done
I noticed some (6) templates still had links in the file
base.html
on http://alexis.notmyidea.org/pelican/ I wrote and ran a small bash script to replace all of them with http://getpelican.com, globally: