Skip to content

Instantly share code, notes, and snippets.

@learncodeacademy
learncodeacademy / gist:5f84705f2229f14d758d
Last active July 16, 2024 04:56
Getting Started with Vagrant, SSH & Linux Server Administration
#!/bin/bash
# Author: teaearlgraycold
# Builds Spigot.jar and places it in the current directory.
CURRENTDIR=`pwd`
BUILDDIR=/tmp/spigot-buildtools
if ! [ -x "$(command -v git)" ]; then
echo "Installing git"
sudo apt-get update