I must to implement command : java -jar test.jar page.xml | mysql -u user -p base
in ant. So i Have tried with this task:
<java jar="test.jar" fork="true">
<arg line="page.xml | mysql -u user -p base"/>
</java>
But i have got en exception with pipe - "|" :
java.lang.IllegalArgumentException: Input already set; can't set to |
So, that's the problem:)