mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-12-22 16:23:31 +01:00
c601ae3601
This reverts commit c6a9c95632
.
14 lines
217 B
Bash
Executable file
14 lines
217 B
Bash
Executable file
#!/bin/bash
|
|
|
|
MKDRUMCOMMAND="./makedrum"
|
|
|
|
for d in *_marches strathspeys standards jigs airs hornpipes other
|
|
do
|
|
for f in $d/*.ly $d/*/*.ly
|
|
do
|
|
if [ ! -f $f ] ; then
|
|
continue
|
|
fi
|
|
$MKDRUMCOMMAND $f
|
|
done;
|
|
done;
|