diff options
Diffstat (limited to 'qtinterface/tqt-replace-stream')
-rwxr-xr-x | qtinterface/tqt-replace-stream | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qtinterface/tqt-replace-stream b/qtinterface/tqt-replace-stream index ff0d08d..ccf1ab0 100755 --- a/qtinterface/tqt-replace-stream +++ b/qtinterface/tqt-replace-stream @@ -1,10 +1,10 @@ #!/bin/bash QT_VER=X -if [[ $1 == "" ]]; then +if [[ "$1" == "" ]]; then echo "Usage: tqt-replace-stream <filename>" else - cat $1 | \ + cat "$1" | \ sed 's/^TQ\([^T_]\)/Q\1/g' | \ sed 's/\([^_]\)TQ\([^T_]\)/\1Q\2/g' | \ sed 's/TQT\([^_]\)/QT\1/g' | \ |