Getting the list of selected files in a relative format #1369
-
I am trying to create a function in lf to feed the selected file to Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Interestingly |
Beta Was this translation helpful? Give feedback.
$fx
contains absolute paths. If you want relative paths you can userealpath
, by replacing$fx
with$(realpath --relative-to=. $fx)
.Interestingly
qmv $fx
works for me (the files are displayed as absolute paths though), so I'm not sure what your issue actually is.