File indexing completed on 2024-04-28 05:41:44

0001 #!/bin/sh
0002 # Copyright Laurent Montel <montel@kde.org> 2023
0003 
0004 list_qml=`find -iname '*.qml'`;
0005 for f in $list_qml; do
0006         echo "file $f";
0007         grep -w "import.*$" $f | sort
0008         echo "end";
0009 done;
0010