summaryrefslogtreecommitdiffstats
path: root/qtinterface/dcopidl-tqt
blob: ea2443c6cf9c5fb25620af2ace8822cca8b3a5f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

if [[ $1 == "" ]]; then
	echo "Usage: dcopidl-tqt <dcopidl_binary> <input_file>"
else
	cp -Rp $2 $2.bkp
#	tqt-replace $2
	$1 $2
	cp -Rp $2.bkp $2
	rm -f $2.bkp
fi