#!/bin/bash

if [ "foo$1" == "foo" ] ; then
  echo "please specify output file"
  exit
fi
scanimage  --mode Color --format tiff --resolution 600 -l 0 -t 0 -x 210 -y 297 > $1.tiff

