#!/bin/bash
QT_VER=3
if [[ $1 == "" ]]; then
echo "Usage: tqt-replace <input_file>"
else
if [[ $QT_VER == 3 ]]; then
sed -i 's/TQ\([^T]\)/Q\1/g' "$1"
sed -i 's/TQT\([^_]\)/QT\1/g' "$1"
exit 0
fi
if [[ $QT_VER == 4 ]]; then
echo "ERROR: Not Yet Implemented"
exit 1
fi
fi