DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20947>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20947 treatment of special characters by ant (escaping * -> \*) [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [EMAIL PROTECTED] 2003-06-20 11:30 ------- You are mixing up shell special chararcters with ant. The Exec task does not do shell style glob expansion on characters so: <exec executable="echo"> <arg line="*.xml"/> </exec> simply outputs "*.xml" whereas <exec executable="sh"> <arg line="-c 'echo *.xml'"/> </exec> outputs build.xml s.xml x.xml --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]