#!/bin/sh # @(#)alias for compress(1) if have gzip(1); old file compression command set -x case "`system`" in CYGWIN*) bzip2 $*;; *) gzip $*;; esac