#! /bin/bash
# MSTOPRE Copyright (2008) Gwyneth Morrison
# This script is used to preproccess the MS scripts
# You may add preprocessing filters here as required

cat $1 |
sed 's/\\/\\\\/g'		|		# replace \ with \\
sed 's/\(..:..:..\) \([0-9]*\/[0-9]*\/[0-9]*\)/\2 \1/' | # Fix Date format
cat > mstopsql.sql
