[RndTbl] RoundTable URL on MUUG Website

Theodore Baschak theodore at ciscodude.net
Fri Jun 12 00:21:35 CDT 2015


> On Jun 11, 2015, at 11:42 PM, Hartmut W Sager <hwsager at marityme.net> wrote:
> 
> Say, what is the URL for the whole RoundTable messagebase on the MUUG Website?  The MUUG main page doesn't seem to have a link to it.
>  
> Hartmut W Sager - Tel +1-204-339-8331, +1-204-515-1701
> 

The Archives are at the following URL, and also contain a gzip’d txt archive for each month.

http://www.muug.mb.ca/pipermail/roundtable/

After writing this out, I wonder perhaps if you’ve already found this though, and are wondering if there is a *full* gzip’d txt archive of every month since December 2000? There isn’t one publicly linked from that URL, but a quick script could download them all, something like:

#!/bin/bash

# sloppy use of both wget and curl, when I could look up the curl option to write to a file from the nice man page

for i in `curl http://www.muug.mb.ca/pipermail/roundtable/ | grep "href.*txt.gz" | awk '{print $2}' | cut -d\" -f2`; do 
  wget http://www.muug.mb.ca/pipermail/roundtable/$i;
  # optionally gunzip the files
  #gunzip $i
done


Theo



More information about the Roundtable mailing list