From ddf725a48ea3e3916ce701b5d674c4a475821d80 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Thu, 27 Feb 2020 09:47:16 -0500 Subject: [PATCH] Better run function --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions b/functions index 3d7f9ab..c7b2db0 100644 --- a/functions +++ b/functions @@ -68,7 +68,7 @@ function run { number=$1; shift for i in `seq $number`; do - $@ + eval "$@" done fi }