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: Urs Liska
Subject: Re: (somewhat OT:) lilypond calling bash script questions
Date: Tue, 08 May 2012 23:50:45 +0200
User-agent: Mozilla/5.0 (X11; Linux i686; rv:12.0) Gecko/20120430 Thunderbird/12.0.1

Am 08.05.2012 11:46, schrieb Jan Kohnert:
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

Wow, that's where I had been looking around without success.
However, Jonas' and David's solution doesn't look as geeky but works perfectly.
Thanks
Urs



reply via email to

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