#!/bin/bash

if [ $# -eq 0 ]
then 
  echo Usage: $0 filename
  echo filename is the name of the equivs control file to create
  exit 1
fi

  case $1 in 
    -*)  
        echo Usage: $0 filename
        echo filename is the name of the equivs control file to create
        exit 1
        ;;
  esac

cp /usr/share/equivs/template.ctl $1

