view bin/mkreport @ 61:97eb0e1e7162

Fix errors in Brewfile
author zegervdv <zegervdv@me.com>
date Fri, 06 Jun 2014 19:29:14 +0200
parents 3bc2e4f5cc59
children 016c657f0c31
line wrap: on
line source

#!/bin/sh
# Create a new latex report from template

if [ $1 ]; then
  name=$1
else
  name='report.tex'
fi

cp $HOME/.templates/report.tex $name
echo "Created $name"