11 lines
273 B
Plaintext
11 lines
273 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
echo -en "#import \"/src/song.typ\": * \n" >build/songs.typ
|
||
|
|
||
|
for t in src/songs/*.typ; do
|
||
|
base="$(basename $t .typ)"
|
||
|
title="$(grep -oP '^\W*title\W*=\W*"\K.*(?="\W*$$)' src/songs/$base.ly)"
|
||
|
|
||
|
echo -en "#song(\"$title\", \"$base\")\n" >>build/songs.typ
|
||
|
done
|