summaryrefslogtreecommitdiffstats
path: root/tqtinterface/conversion_scripts/convert_qt_itself4
blob: 25914e318042e3a421ae1e1c36a99df72f229331 (plain)
1
2
3
4
5
6
7
8
9
10
#/bin/bash

for i in {1..50}
do
	find ./ -type f -iname "*.pro" -exec sed -i 's/\(.*\)\/q\(.*\)\.c\(.*\)/\1\/tq\2\.c\3/g' {} \;
	find ./ -type f -iname "*.pro" -exec sed -i 's/\(.*\)\/q\(.*\)\.h\(.*\)/\1\/tq\2\.h\3/g' {} \;

	find ./ -type f -iname "*.pri" -exec sed -i 's/\(.*\)\/q\(.*\)\.c\(.*\)/\1\/tq\2\.c\3/g' {} \;
	find ./ -type f -iname "*.pri" -exec sed -i 's/\(.*\)\/q\(.*\)\.h\(.*\)/\1\/tq\2\.h\3/g' {} \;
done