11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! $(which navig &>/dev/null); then
|
|
echo "command not found"
|
|
return 1
|
|
fi
|
|
|
|
function bash_source_test_function {
|
|
echo "sourcing not interrupted"
|
|
}
|