#!/bin/bash
#
# HELP: SYNOPSIS:
# HELP:     bzip2
# HELP:
# HELP: DESCRIPTION:
# HELP:     Bzip2 the currently selected files.

cd %d
for a in %f; do
	echo "Compressing $a"
	bzip2 "$a"
done
