mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:06:41 +00:00
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# 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
|