mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-01-18 23:17:59 +01:00
14 lines
251 B
Bash
14 lines
251 B
Bash
|
#!/bin/bash
|
||
|
echo "<!DOCTYPE RCC><RCC version=\"1.0\"><qresource>"
|
||
|
|
||
|
datadir="`pwd`/data"
|
||
|
|
||
|
cd "$datadir"
|
||
|
(find -type f | sed 's/^\.\///g') | while read f
|
||
|
do
|
||
|
ff="${datadir}/$f"
|
||
|
echo "<file alias=\"$f\">$ff</file>"
|
||
|
done
|
||
|
|
||
|
echo "</qresource></RCC>"
|