Skip to content

Instantly share code, notes, and snippets.

View Interfiber's full-sized avatar
🔨
Working

Interfiber Interfiber

🔨
Working
View GitHub Profile
@Interfiber
Interfiber / lua_yum.sh
Last active April 25, 2021 14:56
Lua Yum: A Quick start script to get you rolling with lua
echo "Copyright Interfiber 2020-2021"
echo "Lua quickstart script."
echo "This script will download, and compile lua from source"
echo "Lua is very lightweight so this should not take that long"
echo ""
echo ""
echo ""
echo "stage: downloading lua..."
curl -#L https://www.lua.org/ftp/lua-5.4.2.tar.gz -o LUA_STAGE_DOWNLOAD.tar.gz
if ! test -f LUA_STAGE_DOWNLOAD.tar.gz; then