#!/bin/bash
until false
do
  /bin/stty sane
  /bin/echo -e "\\033[2J\\033[f\\033[0;32mAppuyez sur la touche ENTREE pour démarrer un autre terminal\\033[1;38m"
  read
  /usr/bin/deallocvt
  export VTSTACK=1
  /usr/bin/openvt -s -l -- /bin/bash -l
done
