start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
| export PATH=/bin:/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$PATH | |
| export EDITOR='subl -w' | |
| # Aliases | |
| # Meta aliases | |
| # Opens bash profile | |
| alias bprof="subl -n ~/.bash_profile" | |
| # Refreshes bash profile | |
| alias rbprof="source ~/.bash_profile" |