diff --git a/.zsh/functions.zsh b/.zsh/functions.zsh index 9a3989e..19dc7d0 100644 --- a/.zsh/functions.zsh +++ b/.zsh/functions.zsh @@ -34,7 +34,7 @@ upload() { timesh() { shell=${1:-$SHELL} - for i in $(seq 1 10); do /usr/bin/time $shell -i -c exit; done + for i in $(seq 1 10); do time $shell -i -c exit; done }