10 lines
89 B
Bash
Executable file
10 lines
89 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function debugger() {
|
|
if $debug; then
|
|
echo $@
|
|
fi
|
|
}
|
|
|
|
export -f debugger
|
|
|