dotfiles/safe-reattach-to-user-namespace.sh

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