#!/bin/bash QT_VER=3 if [[ $1 == "" ]]; then echo "Usage: tqt-replace " 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