- Running `tat` in the robots.thoughtbot.com directory was throwing a 'bad session name' tmux error - See http://sourceforge.net/p/tmux/tickets/109/
5 lines
133 B
Bash
Executable file
5 lines
133 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Attach or create tmux session named the same as current directory.
|
|
|
|
tmux new-session -As "$(basename "$PWD" | tr . -)"
|