#!/bin/bash
#
# Update scripts to unix text file format
#


# location of script files
LOCATION=/mnt/ptc/development/scripts

# convert all scripts to unix text format (except this one)
find $LOCATION -not -name "update" -maxdepth 1 -type f -exec dos2unix -k -q {} \;
