aboutsummaryrefslogtreecommitdiffstats
path: root/hm/soispha/conf/lf/commands/scripts/mk_file.sh
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soispha/conf/lf/commands/scripts/mk_file.sh')
-rwxr-xr-xhm/soispha/conf/lf/commands/scripts/mk_file.sh30
1 files changed, 19 insertions, 11 deletions
diff --git a/hm/soispha/conf/lf/commands/scripts/mk_file.sh b/hm/soispha/conf/lf/commands/scripts/mk_file.sh
index cdef38a0..9fb0a000 100755
--- a/hm/soispha/conf/lf/commands/scripts/mk_file.sh
+++ b/hm/soispha/conf/lf/commands/scripts/mk_file.sh
@@ -3,21 +3,29 @@
# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.0.13" . %SHELL_LIBRARY_PATH
+# shellcheck disable=SC2269
+f="$f"
+# shellcheck disable=SC2269
+fx="$fx"
+# shellcheck disable=SC2269
+fs="$fs"
+# shellcheck disable=SC2269
+id="$id"
+
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
+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: "
+ if [ "$ans" = "y" ]; then
+ break
+ else
+ prompt "File name: "
+ fi
fi
- fi
done
touch "$name"