Files
test-projects/bash-test.sh
T
2025-06-23 10:55:58 +02:00

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"
}