incorporscripts/fortunes.zsh

10 lines
84 B
Bash
Raw Normal View History

#!/bin/zsh
read -ks q
while [ "$q" != "q" ]
do
clear
fortune
read -ks q
done