File indexing completed on 2024-05-05 04:40:49

0001 #note: run in the same directory where the file is
0002 
0003 QTC_PATH=$1
0004 
0005 FILES_USED=`find . -name "*.cpp" -o -name "*.h"`
0006 
0007 for file in $FILES_USED
0008 do
0009     cp -v "$QTC_PATH/src/libs/$file" $file
0010 done