#!/bin/bash
#
# HELP: SYNOPSIS:
# HELP:     bunzip2
# HELP:
# HELP: DESCRIPTION:
# HELP:     Bunzip2 the currently selected files.

cd %d
for a in %f; do
	echo "Decompressing $a"
	bunzip2 "$a"
done
