Skip to content

Instantly share code, notes, and snippets.

View hananiel's full-sized avatar

Hananiel Sarella hananiel

View GitHub Profile
@squarism
squarism / iterm2.md
Last active July 28, 2024 13:44
An iTerm2 Cheatsheet

Tabs and Windows

Function Shortcut
New Tab + T
Close Tab or Window + W (same as many mac apps)
Go to Tab + Number Key (ie: ⌘2 is 2nd tab)
Go to Split Pane by Direction + Option + Arrow Key
Cycle iTerm Windows + backtick (true of all mac apps and works with desktops/mission control)
@dmarmugi
dmarmugi / stopCFAppsInSpace.sh
Created August 23, 2017 20:15
Stop all Cloud Foundry apps in a space
cf apps | grep started | awk '{print $1}{system("cf sp " $1)}'