Skip to content

Instantly share code, notes, and snippets.

@franciscocpg
franciscocpg / jetty-install-debian.sh
Last active May 21, 2020 14:51
Install jetty on debian
#!/bin/bash
# do in tmp
cd /tmp
JETTY_FILE='jetty-distribution-9.3.3.v20150827.tar.gz'
JETTY_FOLDER=${JETTY_FILE:0:-7}
# Download
wget http://download.eclipse.org/jetty/stable-9/dist/$JETTY_FILE
# Extract
sudo tar zxvf $JETTY_FILE -C /opt/

Git Cheat Sheet

Commands

Getting Started

git init

or