Skip to content

Instantly share code, notes, and snippets.

@dedeibel
Created January 19, 2019 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dedeibel/6d9c55a5ed3afe6e43be59dc9d0d5cdb to your computer and use it in GitHub Desktop.
Save dedeibel/6d9c55a5ed3afe6e43be59dc9d0d5cdb to your computer and use it in GitHub Desktop.
Get the latest linux beta makemkv key from the forum
#!/bin/sh
set -e
curl -s 'https://www.makemkv.com/forum/viewtopic.php?f=5&t=1053' | \
grep -Eo '<div class="codebox">.*</div>' | \
perl -pe 'next unless $_; s#.*<code>([^<]*?)</code>.*#$1#'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment