Re: Client relative url support infrastructure and merge implementation
From: Nathan Kidd <nathan-svn_at_spicycrypto.ca>
Date: 2007-12-18 23:25:29 CET
C. Michael Pilato wrote:
For a regular variable both %'s are needed:
C:\>set ab=foo
FOR loop variables however seem impossible to escape, so one must be
C:\>for %a in (*) do @echo %ab
C:\>for %a in (*) do @echo %%ab
C:\>for %a in (*) do @echo ^%ab
C:\>for %a in (*) do @echo "%ab"
C:\>for %a in (*) do @echo ^%^ab
C:\>for %a in (*) do @echo ^%^%^ab
C:\>for %a in (*) do @echo ^^%ab
C:\>for %a in (*) do @echo ^%^^%ab
C:\>for %a in (*) do @echo "^%^^%ab"
---------------------------------------------------------------------
|
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.