read -t0 actually does nothing

may be, could be used for -flushing pre-entered-key-buffer-


while true
do
  read -s -n1 -t0 x
  test $x && break
  echo "loop"
done


Reply via email to