I work with ant and bash script. I want to calling bash script from ant . I have script
<exec executable="echo">
<arg value=" 1... "/>
</exec>
it is works fine, but this code not
<exec executable="cd ">
<arg value="/home"/>
</exec>
Why does't work "cd" command ? Can anybody help me?