diff --git a/fortunes.zsh b/fortunes.zsh new file mode 100755 index 0000000..d4a3e1c --- /dev/null +++ b/fortunes.zsh @@ -0,0 +1,9 @@ +#!/bin/zsh + +read -ks q +while [ "$q" != "q" ] +do + clear + fortune + read -ks q +done