fortunes.zsh: script to loop random fortunes

This commit is contained in:
Brian S. Stephan 2016-01-16 12:27:34 -06:00
parent 7924544ef6
commit be74980930
1 changed files with 9 additions and 0 deletions

9
fortunes.zsh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/zsh
read -ks q
while [ "$q" != "q" ]
do
clear
fortune
read -ks q
done