	# %f is the currently selected file name
	# %d is the directory name of the current panel
	# %F is the selected file in the unselected panel
	# %D is the directory name of the unselected panel

A       Dumps the currently selected file
	od -c %f

B       Edit a bug report and send it to root
        vi /tmp/mail.$$
        mail root < /tmp/mail.$$

G       Display the file with roff -man
	nroff -man %f | more

H       Call the info hypertext browser
        info

J       Copies -R . to other panel with tar
	tar cf - %d | (cd %D && tar xvpf -)

K       Makes a release of the current subdirectory
	echo -n "Name of the distribution file (without extension): "
	read tar
	ln -s %d `dirname %d`/`basename %d`.tar
	cd ..
	tar cvhf - $tar | gzip -f9 > $tar.tar.gz

X       Extract the contents of a compressed tar file
	tar xzvf %f