incorporscripts/fortunes.zsh

10 lines
84 B
Bash
Executable File

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