8 lines
203 B
Bash
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
|