From 086012dcad8a976a0dabbb7cbc20c9cb612cdfa9 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 28 Aug 2025 22:44:34 +0900 Subject: Restructure source folders Signed-off-by: Michele Calgaro --- src/app/select_from_file.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/app/select_from_file.js (limited to 'src/app/select_from_file.js') diff --git a/src/app/select_from_file.js b/src/app/select_from_file.js new file mode 100644 index 0000000..3d00c32 --- /dev/null +++ b/src/app/select_from_file.js @@ -0,0 +1,13 @@ +/* + This is an extension for the Krusader filemanager + http://krusader.sourceforge.net/ + + Author: Dirk Eschler + + Reads a file that contains a list of files separated by newline and builds + a list separated by whitespace from it. + + The script is supposed to be used in conjunction with the select_from_file + user action: http://www.kde-files.org/content/show.php?content=54518 +*/ +var filelist = shell("cat " + file).replace(/\n/g, ' ') || ""; -- cgit v1.2.3