zsh/functions/@
2019-07-08 16:09:39 +02:00

6 lines
117 B
Bash

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