1
0
Fork 0
dotfiles/.local/bin/lf-select

10 lines
193 B
Text
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
# Reads file names from stdin and selects them in lf.
while read -r file; do
2023-04-12 11:37:10 +02:00
[ -z "$file" ] && continue
lf -remote "send select \"$file\""
lf -remote "send toggle"
2022-07-04 21:36:33 +02:00
done