start new:
tmux
start new with session name:
tmux new -s myname
| from fabric.api import env | |
| from fabric import tasks | |
| from functools import wraps | |
| def _wrap_as_new(original, new): | |
| if isinstance(original, tasks.Task): | |
| return tasks.WrappedCallableTask(new) | |
| return new | |
| def strict_roles(*role_list): |
Find it here: https://github.com/bitemyapp/learnhaskell