quit only on single "q" input

This commit is contained in:
Y 2020-04-23 07:11:26 +00:00
parent afb67b956e
commit 91c9ad7004
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
# clikan.sh -- CLI Kanban
ver='2020-02-10/HB9KNS'
ver='2020-04-23/HB9KNS'
conf="${CLIKANCONF:-$HOME/.clikanconf}"
defkanban="$HOME/clikanban.md"
@ -201,7 +201,7 @@ showprompt
while read com coa1 coa2 coa3 coar
do case $com in
q*) break ;;
q) break ;;
d) showall doing ;;
w) showall waiting/todo/backlog ;;
a) showall archived/done ;;