[PD-cvs] scripts download-pd-archives.sh,NONE,1.1

Hans-Christoph Steiner eighthave at users.sourceforge.net
Sun Nov 20 00:11:22 CET 2005


Update of /cvsroot/pure-data/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23766

Added Files:
	download-pd-archives.sh 
Log Message:
this script downloads the archives of all the Pd lists and puts them in the Mailbox format used by Apple Mail

--- NEW FILE: download-pd-archives.sh ---
#!/bin/sh

# This script downloads mbox archives of the Pd lists and sets them up at
# Apple Mail.app local mailboxes.
# <hans at at.or.at>

# which lists you want to download.  The lists hosted on this server are:
#     gem-dev pd-announce pd-cvs pd-dev pd-list pd-ot pdweb
LISTS="pd-announce pd-dev pd-list pd-ot pdweb"
MAILBOX_ROOT=~/Library/Mail/Mailboxes

for listname in $LISTS ; do
	 echo " "
	 echo " "
	 echo Downloading $listname:
	 if [ ! -d $MAILBOX_ROOT/$listname.mbox ]; then
		  mkdir $MAILBOX_ROOT/$listname.mbox
	 fi
	 cd $MAILBOX_ROOT/$listname.mbox
	 wget http://lists.puredata.info/pipermail/$listname.mbox/$listname.mbox && \
		  (rm mbox table_of_contents; mv $listname.mbox mbox)
done





More information about the Pd-cvs mailing list