Skip to content

Instantly share code, notes, and snippets.

@jackwen
jackwen / 01.bash_shortcuts_v2.md
Created October 30, 2023 08:10 — forked from tuxfight3r/01.bash_shortcuts_v2.md
Bash keyboard shortcuts

Bash Shortcuts

visual cheetsheet

Moving

command description
ctrl + a Goto BEGINNING of command line
@jackwen
jackwen / gist:4a1e957b5536c1005f00
Last active August 29, 2015 14:26 — forked from pithyless/gist:1208841
Install Python 2.7 (homebrew + pip + virtualenv) on Mac OS X Lion

Install Python

$ brew install readline sqlite gdbm
$ brew install python --universal --framework
$ python --version
Python 2.7

Symlinks...

#!/bin/bash
## ==================================
## Servers
## ==================================
# A server with a non-standard SSH port, using passwordless RSA key authentication
alias server1='ssh -p 2200 [email protected]'
# A server that uses a certficate for authentication