6 lines
117 B
Bash
6 lines
117 B
Bash
#!/bin/zsh
|
|
# for debugging: prefix any command with @ to print it before execution
|
|
function @() {
|
|
echo "$*"; "$@"
|
|
}
|