plasma-framework/tools/port-kdebug.sh
2013-07-31 23:41:26 +02:00

11 lines
163 B
Bash

#!/bin/sh
# kDebug() becomes qDebug() in cpp files
for FS in `find $PWD -type f -name '*.cpp'`; do
perl -p -i -e 's/kDebug\(\)/qDebug()/g' $FS
done
#exit;