diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-10-17 22:12:26 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-10-17 22:12:26 +0200 |
commit | c4da89e164a9901f4a317085d83f745e235b6ea0 (patch) | |
tree | 0ce70bb2f5f0f444767f19e9410ebb88d27de305 | |
parent | 4fac003fb7d79d59e61fb0d3bcee8b38e06bdbc6 (diff) |
use eval to allow pipes
-rwxr-xr-x | bin/common/wt | 2 |
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 |