zsh/functions/@

6 lines
117 B
Plaintext
Raw Normal View History

2019-07-08 14:09:39 +00:00
#!/bin/zsh
# for debugging: prefix any command with @ to print it before execution
function @() {
echo "$*"; "$@"
}