Search code examples
mavenantmaven-antrun-plugin

How to chain commands in Ant?


How can I chain commands using maven ant-run-plugin? I want something simillar to this unix command chain:

find . | grep .xml | myCommand

Solution

  • The concept in Ant which is the closer to pipelining in unix command line is FilterChains.