7 lines
179 B
Bash
Executable File
7 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$(basename "$0")" != "host" ]; then
|
|
host-spawn -cwd "${PWD/#$HOME/$HOST_HOME}" $(basename "$0") "$@"
|
|
else
|
|
host-spawn -cwd "${PWD/#$HOME/$HOST_HOME}" "$@"
|
|
fi
|