From 86448eacc3e1bfb1847b828c7bf02797ca070f95 Mon Sep 17 00:00:00 2001 From: surtur Date: Fri, 18 Aug 2023 16:25:20 +0200 Subject: [PATCH] functions.zsh: use first-found time --- .zsh/functions.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }