Last active
January 8, 2018 10:45
-
-
Save megasaturnv/524254bb89111caf92c732b37680843d to your computer and use it in GitHub Desktop.
Automatically attach to a tmux session if one exists
This file contains 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
#!/bin/sh | |
#Megasaturnv 2017-11-17 | |
(tmux ls | grep -q "attached" && echo "[Info] You are already attached to a tmux session") || tmux attach |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment