0

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

find . | grep .xml | myCommand
noahlz
  • 10,202
  • 7
  • 56
  • 75
kofucii
  • 7,393
  • 12
  • 51
  • 79

1 Answers1

1

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

Nicolas Lalevée
  • 2,014
  • 1
  • 15
  • 14