summaryrefslogtreecommitdiff
path: root/bin/common/wt
blob: 0568b99a770365d520dcc081d7a23242f6a10fc1 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

echo "$@" > /tmp/truewhile.tmp
while true
do
  sh /tmp/truewhile.tmp
  sleep 1
  clear
done
rm /tmp/truewhile.tmp