Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View eriksalhus's full-sized avatar
🎯
Focusing

Erik Salhus eriksalhus

🎯
Focusing
View GitHub Profile
@aelkz
aelkz / [FEDORA] gitkraken
Last active November 14, 2023 05:50
How to install gitkraken on Fedora [25,26,27] + launcher icon
#!/bin/bash
# Download GitKraken
wget https://release.gitkraken.com/linux/gitkraken-amd64.tar.gz
# copy the downloaded file into /opt directory
cp gitkraken-amd64.tar.gz /opt/
cd /opt
@thesmith
thesmith / jetty
Created March 15, 2011 13:56
shell script to start jetty
#! /bin/sh
cd `dirname "$0"`
USER=`whoami`
if [ $USER != 'jetty' ]
then
sudo -u jetty $0 $@
exit $?