Environment - jasper-zanjani/dotfiles GitHub Wiki
- apropos
- env
- export
- history
- man
- nohup
- pwd
- sleep
- su
- sudo
- tee
- tmux
- unalias
- watch
- whatis
- where
- whereis
- which
- xargs
Share your screen session with another user
screen -x user/sessionReturn number of rows and columns of the terminal
stty size--- | ---
Config | ~/.tmux.conf
Change prefix to vim-style $KEYCOMBO (C-b by default)
set-option -g prefix $KEYCOMBOName a new session
tmux new-session -s 'my rails project'Return width of current terminal window
tput cols Return height of current terminal window
tput linesExecute $CMD at periods of $N seconds, watching its output CLKF
watch $CMD -n $NCheck memory usage in megabytes (-m) every 5 seconds Enki
watch -n 5 free -m