diff options
author | katherine <shmibs@shmibbles.me> | 2016-08-20 08:57:12 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2016-08-20 08:57:12 -0700 |
commit | 0f9d8847278c0c031d34b4ede3090642cbc18385 (patch) | |
tree | 2a3f06edaa49d09d567c832200087ef7f7ac662c /.zprofile-dtach | |
parent | 815781b99f2a2ed99c832802c08b3b201a34e731 (diff) | |
download | dotfiles-0f9d8847278c0c031d34b4ede3090642cbc18385.tar.gz |
quit on empty str
Diffstat (limited to '.zprofile-dtach')
-rw-r--r-- | .zprofile-dtach | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.zprofile-dtach b/.zprofile-dtach index 6f57ef7..0708330 100644 --- a/.zprofile-dtach +++ b/.zprofile-dtach @@ -24,6 +24,10 @@ if [[ -z "${DTACH_SUB}" ]]; then echo -n "> " read -A args case "${args[1]}" in + "") + break; + ;; + q) break; ;; |