about summary refs log tree commit diff stats
path: root/home-manager/config/lf/commands/scripts/mk_dir
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/config/lf/commands/scripts/mk_dir')
-rwxr-xr-xhome-manager/config/lf/commands/scripts/mk_dir20
1 files changed, 18 insertions, 2 deletions
diff --git a/home-manager/config/lf/commands/scripts/mk_dir b/home-manager/config/lf/commands/scripts/mk_dir
index e24c9163..7793bad0 100755
--- a/home-manager/config/lf/commands/scripts/mk_dir
+++ b/home-manager/config/lf/commands/scripts/mk_dir
@@ -3,6 +3,22 @@
 # shellcheck source=/dev/null
 SHELL_LIBRARY_VERSION="1.1.3" . %SHELL_LIBRARY_PATH
 
-readp "Directory Name: " dir
-mkdir "$dir"
+prompt "Directory Name: "
+name=""
+while [ -z "$name" ] || [ -e "$name" ]
+do
+  read -r name
+  if [ -e "$name" ]; then
+    prompt "Directory already exists, overwrite [y|N]: "
+    read -r ans
+
+    if [ "$ans" = "y" ]; then
+      break
+    else
+      prompt "Directory Name: "
+    fi
+  fi
+done
+
+mkdir "$name"
 # vim: ft=sh