Skip to content

Instantly share code, notes, and snippets.

@jcb91
jcb91 / screen.md
Last active April 30, 2017 14:36
Screen Cheat Sheet

GNU Screen Cheat Sheet

Starting screen

  • screen –DR -> list of detached screen
  • screen –r PID -> attach detached screen session
  • screen –dmS MySession -> start a detached screen session
  • screen –r MySession -> attach screen session with name MySession

Basics

@jcb91
jcb91 / tmux_local_install.sh
Last active August 22, 2016 11:31 — forked from sharjeelsayed/tmux_local_install.sh
bash script for installing tmux without root access. Updated to Tmux 2.2 from github rather than sourceforge
#!/bin/bash
# Source: https://gist.github.com/ryin/3106801
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=2.2