diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-04 14:02:28 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-04 14:02:28 +0200 |
commit | dc03fb40fe55a7dc88c07509b47299223d4d5815 (patch) | |
tree | 93d33df604005218d287d535b37dfc4ab9de307d /bin/common/wt | |
parent | 1496b8724c39dd6d16a46916ad4ed47a83a44852 (diff) |
cleaned up scripts, use sh (-> dash) where possible
Diffstat (limited to 'bin/common/wt')
-rwxr-xr-x | bin/common/wt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/common/wt b/bin/common/wt index 81081c8..0568b99 100755 --- a/bin/common/wt +++ b/bin/common/wt @@ -1,9 +1,9 @@ -#!/bin/bash +#!/bin/sh echo "$@" > /tmp/truewhile.tmp while true do - bash /tmp/truewhile.tmp + sh /tmp/truewhile.tmp sleep 1 clear done |