about summary refs log tree commit diff stats
path: root/home-manager/config/lf/cmds/mk_ln
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-12 01:29:28 +0100
committerene <ene@sils.li>2023-03-12 01:29:28 +0100
commit59e6edd4fd818c60ca4ea416ae4d23163254dfa5 (patch)
treeed5454eb07365377b4ab3ff6011b3ce250fbd9cc /home-manager/config/lf/cmds/mk_ln
parentFix(hm/conf/lf): Reduce wrong mappings (diff)
downloadnixos-config-59e6edd4fd818c60ca4ea416ae4d23163254dfa5.tar.gz
nixos-config-59e6edd4fd818c60ca4ea416ae4d23163254dfa5.zip
Fix(hm/conf/lf): Rewrite some of the cmds
Diffstat (limited to '')
-rwxr-xr-x[-rw-r--r--]home-manager/config/lf/cmds/mk_ln (renamed from home-manager/config/lf/cmds/mk_ln.sh)16
1 files changed, 7 insertions, 9 deletions
diff --git a/home-manager/config/lf/cmds/mk_ln.sh b/home-manager/config/lf/cmds/mk_ln
index f2129763..6b9e2b30 100644..100755
--- a/home-manager/config/lf/cmds/mk_ln.sh
+++ b/home-manager/config/lf/cmds/mk_ln
@@ -1,8 +1,11 @@
-#!/usr/bin/env dash
+#! /usr/bin/env dash
 # shellcheck disable=SC2086
 # shellcheck source=/dev/null
+# . ~/.local/lib/shell/lib
 . %SHELL_LIBRARY_PATH
 
+LIB_TEMP_DIR_FOR_SCRIPT=$(mktemp -d)
+
 while IFS= read -r i;do
     set -- "$@" "$i"
 done < "$(tmp 'cat ~/.local/share/lf/files')"
@@ -15,21 +18,18 @@ if [ "$#" -lt 1 ]; then
     exit 0
 fi
 
-
 case "$mode" in
     copy)
         while [ "$#" -gt 0 ]; do
             file="$1"
             ans="$(basename "$file")"
 
-            while ls -a "$(pwd)" | grep --word-regexp "$ans" > /dev/null;do
+            while [ -e "$ans" ];do
                 printf "\"%s\" already exists, new name for link: " "$ans"
                 read -r ans
             done
 
             ln -s "$file" "$(pwd)/$ans"
-
-
             shift
         done
         ;;
@@ -37,7 +37,5 @@ esac
 rm ~/.local/share/lf/files
 # lf -remote "send clear"
 
-
-
-
-if [ -d /tmp/LIB_FILE_TEMP_DIR/ ];then rm -r /tmp/LIB_FILE_TEMP_DIR/; fi
+if [ -d "$LIB_TEMP_DIR_FOR_SCRIPT" ];then rm -r "$LIB_TEMP_DIR_FOR_SCRIPT"; fi
+# vim: ft=sh