Command options for associated file

%d	path in Active Panel
%D	path in Inactive Panel
%f	Filename
%F	FileName with path
%w	wait till command is completed
%r	reload Active Panel
%R	reload Inactive Panel


Examples:

unpack of archive *.tar.gz in second Panel:
	cd %D; gunzip -c %F | tar xvf - %w %R

unpack of archive *.tar.gz in Active Panel:
	gunzip -c %f | tar xvf - %w %r

archive information (*.tar.gz):
	gunzip -c %f | tar tvf - | less   (execute in terminal)

archive information (*.rpm):
	rpm -qlip %f | less   (execute in terminal)

graphic file opening:
	gimp %f 

open file as ROOT:
	su -c 'command %f'   (execute in terminal; mind the apostrophes)
