diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-07-18 17:54:33 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-07-18 17:54:33 +0200 |
commit | 899c6a9227cea23cc226148bc0b6afaa2780d81d (patch) | |
tree | 64e197c51b966bb99bb1467932c7c230af640d77 /bin/common | |
parent | d1e66a980851aed154926852333d683dc5554bc9 (diff) |
remove temp file
Diffstat (limited to 'bin/common')
-rwxr-xr-x | bin/common/wt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/common/wt b/bin/common/wt index 0568b99..d19539b 100755 --- a/bin/common/wt +++ b/bin/common/wt @@ -1,10 +1,7 @@ #!/bin/sh - -echo "$@" > /tmp/truewhile.tmp while true do - sh /tmp/truewhile.tmp - sleep 1 clear + $@ + sleep 1 done -rm /tmp/truewhile.tmp |