#!/bin/bash

BaseDir=$HOME/bin/Perl/WIEN2k

if [ "$1" == "" ]; then
	echo 'usage: perl WIEN2k.pl --Action=MakeCIF File_Name'
	exit;
fi

perl $BaseDir/WIEN2k.pl --Action=MakeCIF $@

