diff options
author | Soispha <soispha@vhack.eu> | 2023-05-28 22:10:24 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-28 22:10:24 +0200 |
commit | e5af81a5f9d9d3a2af0d3e970815e3c73beb0840 (patch) | |
tree | a8acf6adde5c6f509bf523c28d4243869a3d1107 /home-manager/config/lf/commands/scripts/mk_dir | |
parent | Fix(bootstrap): Quote scripts (diff) | |
download | nixos-config-e5af81a5f9d9d3a2af0d3e970815e3c73beb0840.tar.gz nixos-config-e5af81a5f9d9d3a2af0d3e970815e3c73beb0840.zip |
Fix(hm/conf/lf/cmds): Rework some of them
Diffstat (limited to '')
-rwxr-xr-x | home-manager/config/lf/commands/scripts/mk_dir | 20 |
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 |