summaryrefslogtreecommitdiff
path: root/bin/reattach.sh
blob: d31b3703af440f99424fa77a4402a0bead0b60c2 (plain)
1
2
3
4
5
6
7
#!/bin/bash

if [[ `uname` == 'Darwin' ]]; then
    reattach-to-user-namespace -l bash
else
    exec $SHELL -l
fi