lilypond-user
[Top][All Lists]
Advanced

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

Re: musicxml2ly


From: Noeck
Subject: Re: musicxml2ly
Date: Fri, 20 Mar 2015 00:02:54 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0

Hi Craig,

> Do I append "for f in *.xml" to the end of my command;

No, you put all your command within the for loop:

for f in *.xml; do
/Applications/LilyPond.app/Contents/Resources/bin/musicxml2ly  --nd
--nrp --npl --no-beaming -m --language=english $f; done

(all this is one line – or written in several lines:)

for f in *.xml
do
  /Applications/LilyPond.app/Contents/Resources/bin/musicxml2ly \
  --nd --nrp --npl --no-beaming -m --language=english $f
done

I hope this syntax is the same on a Mac.

HTH,
Joram



reply via email to

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