diff options
Diffstat (limited to 'home-manager/soispha/config/lf/commands/scripts/rename')
-rwxr-xr-x | home-manager/soispha/config/lf/commands/scripts/rename | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/home-manager/soispha/config/lf/commands/scripts/rename b/home-manager/soispha/config/lf/commands/scripts/rename new file mode 100755 index 00000000..e1aef306 --- /dev/null +++ b/home-manager/soispha/config/lf/commands/scripts/rename @@ -0,0 +1,26 @@ +#!/usr/bin/env dash + +# shellcheck source=/dev/null +SHELL_LIBRARY_VERSION="1.1.4" . %SHELL_LIBRARY_PATH + + +prompt "New name: " +name="" +while [ -z "$name" ] || [ -e "$name" ] +do + read -r name + if [ -e "$name" ]; then + prompt "Name already exists, overwrite [y|N]: " + read -r ans + + if [ "$ans" = "y" ]; then + break + else + prompt "Name: " + fi + fi +done + +mv "$f" "$name" + +# vim: ft=sh |