aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkatherine <shmibs@shmibbles.me>2016-08-20 08:57:12 -0700
committerkatherine <shmibs@shmibbles.me>2016-08-20 08:57:12 -0700
commit0f9d8847278c0c031d34b4ede3090642cbc18385 (patch)
tree2a3f06edaa49d09d567c832200087ef7f7ac662c
parent815781b99f2a2ed99c832802c08b3b201a34e731 (diff)
downloaddotfiles-0f9d8847278c0c031d34b4ede3090642cbc18385.tar.gz
quit on empty str
-rw-r--r--.zprofile-dtach4
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;
;;