9 lines
190 B
Plaintext
9 lines
190 B
Plaintext
|
# Execute a "run" file either within ".notes" or the current directory.
|
||
|
function run {
|
||
|
if [[ -f .notes/run ]]; then
|
||
|
.notes/run "${@}"
|
||
|
elif [[ -f run ]]; then
|
||
|
./run "${@}"
|
||
|
fi
|
||
|
}
|