dotfiles/bin/safe-reattach-to-user-namespace
Anthony Cicchetti 73528b3d62 Buncha stuff
2020-01-10 08:01:04 -05:00

8 lines
203 B
Bash
Executable file

#!/usr/bin/env zsh
# If reattach-to-user-namespace is not available, just run the command.
if [ -n "$(command -v reattach-to-user-namespace)" ]; then
reattach-to-user-namespace $@
else
exec "$@"
fi