#!/bin/bash
#
# HELP: SYNOPSIS:
# HELP:     gunzip
# HELP:
# HELP: DESCRIPTION:
# HELP:     Gunzip the currently selected files.

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