about summary refs log tree commit diff stats
path: root/home-manager/config/lf/cmds/trash
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/config/lf/cmds/trash')
-rwxr-xr-xhome-manager/config/lf/cmds/trash29
1 files changed, 29 insertions, 0 deletions
diff --git a/home-manager/config/lf/cmds/trash b/home-manager/config/lf/cmds/trash
new file mode 100755
index 00000000..ca68cfc1
--- /dev/null
+++ b/home-manager/config/lf/cmds/trash
@@ -0,0 +1,29 @@
+#! /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)
+
+#files=$(printf "$fx" | tr '\n' ';')
+#
+#while [ "$files" ]; do
+#    # extract the substring from start of string up to delimiter.
+#    # this is the first "element" of the string.
+#    file=${files%%;*}
+#
+#    trash-put "$(basename "$file")"
+#    # if there's only one element left, set `files` to an empty string.
+#    # this causes us to exit this `while` loop.
+#    # else, we delete the first "element" of the string from files, and move onto the next.
+#    if [ "$files" = "$file" ]; then
+#        files=''
+#    else
+#        files="${files#*;}"
+#    fi
+#done
+thrash put "$fx";
+
+if [ -d "$LIB_TEMP_DIR_FOR_SCRIPT" ];then rm -r "$LIB_TEMP_DIR_FOR_SCRIPT"; fi
+# vim: ft=sh