12

How can I perform a command on the selected items ?

for example calling vim, or gimp for the 5 text or image files selected.

I tried to make use of the inlined command line at the bottom, but it doesn't take my selection into account

pbm
  • 24,747
  • 6
  • 36
  • 51
Stephane Rolland
  • 4,147
  • 6
  • 37
  • 49

2 Answers2

15

For one-liners, use %t at the command line, which gets substituted for a list of your selected items.

for F in %t; do echo "${F} is selected"; done
cp %t /var/somewhereelse/
Melebius
  • 768
  • 1
  • 6
  • 18
A.Hoznecer
  • 151
  • 1
  • 2
10

Press F2 for user menu and then choose Do something on tagged files or press @. In popup window you can provide your command.

It is important to notice that for each file command will be executed separately. It will be something like:

for file in files:
   COMMAND file

not

COMMAND file1 file2
pbm
  • 24,747
  • 6
  • 36
  • 51