dotfiles/home/bin/executable_safe-reattach-to-user-namespace
2023-01-25 22:13:24 -07:00

8 lines
203 B
Bash

#!/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