7 lines
115 B
Plaintext
7 lines
115 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
grep '/qt6/qml/.*/qmldir$' |
|
||
|
while read fn; do
|
||
|
sed -ne "s/^module \(.*\)/qt6qml(\1)/p" "${fn}"
|
||
|
done
|