mirror of
https://github.com/zhaofengli/attic.git
synced 2024-12-14 11:57:30 +00:00
11 lines
198 B
Text
11 lines
198 B
Text
|
#!/usr/bin/env bash
|
||
|
source "$(dirname "${BASH_SOURCE[0]}")/common.sh"
|
||
|
|
||
|
if [[ ! -f "${cached_shell}" ]]; then
|
||
|
>&2 echo "No cached shell in ${cached_shell}"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
. "${cached_shell}"
|
||
|
exec "$@"
|