Asp2phptags:
#!/bin/bash
# Copyright 2001 - 2004 SQLFusion LLC info <at> sqlfusion <dot> com
for file in "$@"
do
if [ ! -d "$file" ] ; then
echo "Converting $file"
sed -f /usr/local/bin/asp2phptags.sed "$file" > "$file.new"
cp "$file.new" "$file"
rm "$file.new"
fi
done
Other Development Tools Scripts: