lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: (somewhat OT:) lilypond calling bash script questions


From: Jan Kohnert
Subject: Re: (somewhat OT:) lilypond calling bash script questions
Date: Tue, 08 May 2012 11:46:40 +0200
User-agent: Roundcube Webmail/0.7.1

Hi,

Am 2012-05-08 11:31, schrieb Urs Liska:
I would like to write a script that allows me to compile all .ly
files in one run.

[...]

in a form like

for dir in [get me all directories starting with a number]
do
cd $dir
lilypond *.ly
cd ..
done

This would be a bash solution:

for dir in $(find . -maxdepth 1 -type d -regex "^\.\/[0-9].*$"); do
   cd {dir}
   lilypond *.ly
   cd ..
done

--
Best regards Jan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]