Results 1 to 2 of 2
Anyone know such typo generator software?...
- 12-13-2008 #1Just Joined!
- Join Date
- Dec 2008
- Posts
- 1
Is there any typo generator software under linux?
Anyone know such typo generator software?
- 12-13-2008 #2
Welcome!
On my system an external device handles this function. It's installed between the keyboard and the chair. It also has the feature of writing nonsense and wasting time (now if only I knew how to turn these features off...)
EDIT: Ah, what the heck, I could use the practice:
Code:#!/bin/bash # # Random Typo Generator # # Version: Haha :D # # echo -n "What is the desired \% of reliability? (0-100) " read PERCENT while true ; do clear echo $TEXT echo -n "Type whatever you like: " read -n 1 VAR if [ ! $VAR ] ; then VAR=" " fi if [ "${RANDOM:1:2}" -gt "$PERCENT" ] ; then VAR="x" fi TEXT="$TEXT$VAR" doneCan't tell an OS by it's GUI


Reply With Quote