This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set-option -ga update-environment ' PATH' | |
| # remap prefix from 'C-b' to 'C-a' | |
| unbind C-b | |
| set-option -g prefix C-a | |
| bind-key C-a send-prefix | |
| # split panes using | and - | |
| bind | split-window -h | |
| bind - split-window -v |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo Executing .profile | |
| source /d/env-tools/bash-setup.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker stats $(docker ps --format={{.Names}}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tmux new-window -n analysis -c /d/work/example | |
| cd /g/work/a-analytics | |
| tmux select-window -t analysis | |
| tmux split-window -v -p 80 | |
| tmux select-pane -t 0 | |
| tmux send-keys "cd run/analysis-local" C-m | |
| tmux send-keys "ls -la" C-m | |
| tmux select-pane -t 1 | |
| tmux send-keys "ls -la" C-m | |
| tmux split-window -h |