* admin/archive-contents.el: Create web pages.
[emacs/old-mirror.git] / admin / org-synch.sh
blob02696b25e9c9bcbc5176f838b8dd71d9551b33a9
1 #!/bin/sh
3 # this script expects $1 to be the download directory and $2 to have org-synch.el
5 PATH="/bin:/usr/bin:/usr/local/bin:${PATH}"
7 pkgname=`curl -s http://orgmode.org/elpa/|perl -ne 'push @f, $1 if m/(org-\d{8}\.tar)/; END { @f = sort @f; print "$f[-1]\n"}'`
9 cd $1
10 wget -q http://orgmode.org/elpa/${pkgname} -O ${pkgname}-tmp
11 if [ -f ${pkgname}-tmp ]; then
12 rm -f org*.tar
13 mv ${pkgname}-tmp ${pkgname} && \
14 emacs -batch -l $2/org-synch.el --eval "(org-synch \"${pkgname}\")"