#!/bin/bash
#
# HELP: SYNOPSIS:
# HELP:     gzip
# HELP:
# HELP: DESCRIPTION:
# HELP:     Gzip the currently selected files.

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