12 lines
251 B
Bash
12 lines
251 B
Bash
#!/usr/bin/env -S bash -c 'echo "Not a user script. source(aka .) only"'
|
|
|
|
if is_cmd zoxide; then
|
|
|
|
. <( zoxide init --cmd cd "${BASE_SHELL}" )
|
|
|
|
[[ -n "${DBG}" ]] && echo "zoxide loaded."
|
|
|
|
fi
|
|
|
|
# vim: set ft=sh expandtab tabstop=4 shiftwidth=4:
|
|
|