Skip to content

Instantly share code, notes, and snippets.

@marked
Last active December 20, 2018 21:23
Show Gist options
  • Save marked/1e129d1778f354b8013d062e91863a00 to your computer and use it in GitHub Desktop.
Save marked/1e129d1778f354b8013d062e91863a00 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
mkdir "tmbx";
while (1) {
my $t = time();
print `wget https://www.tumbex.com/last -O - | tr '"' '\n' | egrep "^https://www.tumbex.com/.*/posts\$" | uniq | cut -d'/' -f4 > tmbx/tmbx-$t.uids`;
`gzip tmbx/tmbx-$t.uids`;
sleep 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment