mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-11-12 14:43:31 +01:00
6d9bb716d9
Added flourishing symbols, however not yet complete: want a function not markup Further update of lilydrum Started a cheatsheet Removed fullscore attempts, will be retried later
8 lines
141 B
Bash
Executable file
8 lines
141 B
Bash
Executable file
#!/bin/bash
|
|
|
|
MKDRUMCOMMAND="./makedrum"
|
|
|
|
for d in *_marches strathspeys standards jigs airs hornpipes other
|
|
do
|
|
$MKDRUMCOMMAND $d/*.ly
|
|
done;
|