Skip to content

Instantly share code, notes, and snippets.

@th-we
th-we / jwluadoc_download.sh
Last active November 14, 2015 10:06
A script to download documentation of Jari Williamsson's Finale PDK framework and his JWLua plugin
#!/bin/bash
set -e
if ! [ -x "$(command -v wget)" ]; then
echo "Need wget to download documentation. Depending on your os, try any of the following:"
echo " apt-get install wget"
echo " brew install wget"
echo " yum install wget"
exit 1