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
On Jun 11, 2015, at 11:42 PM, Hartmut W Sager hwsager@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
The links to the archives for each mailing list are in the right-hand column of the following page...
http://www.muug.mb.ca/maillists.html
... and that page is found via the "Mailing Lists" link on the home page menu bar (top and bottom of page).
Gilbert
On 12/06/2015 12:21 AM, Theodore Baschak wrote:
On Jun 11, 2015, at 11:42 PM, Hartmut W Sager hwsager@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