blob: cc97dcc3db46d464340403e5ffad77922ea60047 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/bash
NNN_OPTS=d nnn -p /tmp/nnn_pick
rm -f /tmp/nnn_attach_cmds
while read f; do
echo "push \"<attach-file> ${f}<enter>\"" >> /tmp/nnn_attach_cmds
done < /tmp/nnn_pick
|