Quantcast
Channel: Eureka! » Ant
Viewing all articles
Browse latest Browse all 26

Apache Ant – Run piped command in exec task

$
0
0

The Ant <exec> task allows us to run shell command in Ant script. We could provide input arguments like the following example which prints today’s weekday.
build.xml

<?xml version="1.0" encoding="UTF-8"?>
<project name="Ant Piped Commands" default="today" basedir=".">
  <target name="today">
    <exec executable="date" outputproperty="weekday">
      <arg value="+%A" />
    </exec>
    <echo message="Today is : ${weekday}"/>
  </target>
</project>

ant-exec-piped-commands-1
 

Piping commands is also allowed but we need to use the sh command and put all other commands as a single input. The following example counts the number of files in the project root.

build.xml

<?xml version="1.0" encoding="UTF-8"?>
<project name="Ant Piped Commands" default="count" basedir=".">
  <target name="count">
    <exec executable="sh" outputproperty="noOfFiles">
      <arg value="-c" />
      <arg value="ls | wc -l" />
    </exec>
    <echo message="noOfFiles: ${noOfFiles}"/>
  </target>
</project>

ant-exec-piped-commands-2
 

Done =)

Reference: StackOverflow – How do I use the Ant exec task to run piped commands?


Filed under: Ant Tagged: Ant, Shell

Viewing all articles
Browse latest Browse all 26

Trending Articles