#!/bin/bash
# Copyright 2016 Chad Lemmen http://www.lemmen.com
#
# Modify a CSV file to be imported with load command

csvfile=$1

sed -e '1 d' "$csvfile" | sed 's/"//g' | sed 's/$/,/' > $csvfile~

