Created
July 10, 2018 00:30
-
-
Save Arkanosis/e04124195e529b741af616c19d9a7879 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
chans=" | |
labsquare/Regovar | |
labsquare/pirus | |
labsquare/french | |
labsquare/general | |
labsquare/fastQt | |
labsquare/CuteVariant | |
labsquare/CutePeaks | |
labsquare/cuteFasta | |
labsquare/news | |
" | |
( | |
mkdir "labsquare_backup" | |
cd "labsquare_backup" | |
for chan in $chans; do | |
curl "https://gitter.im/$chan/archives" | | |
sed -n 's/^ *href="\([^"]\+\).*/\1/p' | | |
while read url; do | |
wget -E -H -p -k "https://gitter.im/$url" | |
done | |
done | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment