Skip to content

Instantly share code, notes, and snippets.

@rodolfojnn
rodolfojnn / jetty-install-debian.sh
Last active September 17, 2018 17:57 — forked from franciscocpg/jetty-install-debian.sh
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://archive.eclipse.org/jetty/9.3.3.v20150827/dist/$JETTY_FILE
# Extract
sudo tar zxvf $JETTY_FILE -C /opt/