diff options
Diffstat (limited to 'home-manager/config/lf/commands/scripts/mk_file')
-rwxr-xr-x | home-manager/config/lf/commands/scripts/mk_file | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/home-manager/config/lf/commands/scripts/mk_file b/home-manager/config/lf/commands/scripts/mk_file index 5c98b400..11cac9b3 100755 --- a/home-manager/config/lf/commands/scripts/mk_file +++ b/home-manager/config/lf/commands/scripts/mk_file @@ -3,6 +3,23 @@ # shellcheck source=/dev/null SHELL_LIBRARY_VERSION="1.1.3" . %SHELL_LIBRARY_PATH -readp "File Name: " name +prompt "File name: " +name="" +while [ -z "$name" ] || [ -e "$name" ] +do + read -r name + if [ -e "$name" ]; then + prompt "File already exists, overwrite [y|N]: " + read -r ans + + if [ "$ans" = "y" ]; then + break + else + prompt "File name: " + fi + fi +done + +touch "$name" "$EDITOR" "$name" # vim: ft=sh |