summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorRaymaekers Luca <raymaekers.luca@gmail.com>2023-10-17 22:12:26 +0200
committerRaymaekers Luca <raymaekers.luca@gmail.com>2023-10-17 22:12:26 +0200
commitc4da89e164a9901f4a317085d83f745e235b6ea0 (patch)
tree0ce70bb2f5f0f444767f19e9410ebb88d27de305 /bin
parent4fac003fb7d79d59e61fb0d3bcee8b38e06bdbc6 (diff)
use eval to allow pipes
Diffstat (limited to 'bin')
-rwxr-xr-xbin/common/wt2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/common/wt b/bin/common/wt
index d19539b..3cd739a 100755
--- a/bin/common/wt
+++ b/bin/common/wt
@@ -2,6 +2,6 @@
while true
do
clear
- $@
+ eval "$*"
sleep 1
done