NAME
typ
—
measure typing speed
SYNOPSIS
typ |
DESCRIPTION
typ
is a simple utility for measuring and
analyzing typing speed. It reads user input on the tty until a newline is
encountered. Then, it prints some useful statistics.
typ
measures (among other
things) seconds per
word rather than words per minute. Unlike other timing utilities,
time spent between words is not counted. As a result,
typ
much more accurately measures the typist's raw
typing rate, regardless of his “doubting” rate.
typ
works when used in a pipe, as long as
there is a tty available.
OUTPUT FORMAT
typ
prints eight lines to standard output.
Each line consists of a number, a tab character and a short explanation.
- total words typed
- total characters typed
- total characters typed inside words
- total seconds spent
- total seconds spent inside words
- average seconds spent per character
- average seconds spent per character inside word
- average seconds spent per word
To retrieve a specific number, you might use sed(1):
typ | sed -n '7s/\t.*//p'
AUTHORS
typ
is written by John Ankarström
<john
(a)
ankarstrom.se>.