0

ant(「which」コマンドと同様)を使用して、実行可能ファイル(Linuxの場合)のパスを見つけようとしています。例えば:

which ls

出力:

/bin/ls

ファイルシステムを検索することはできません。$PATHを検索する必要があります。

これまでのところ、jythonを使用したスクリプトは機能するということだけですが、jythonにはインストールが必要なようであるため、代替案について考えていました(むしろ避けたいと思います)。助言がありますか?

4

1 に答える 1

3

ビルドスクリプト内にスクリプト言語を埋め込むことができます。

次の例では、ivyを使用して必要な依存関係をダウンロードし、Windowsでも機能するはずです。

<project name="ANT which" default="which" xmlns:ivy="antlib:org.apache.ivy.ant">

    <description>
    ANT example that simulates the unix "which" command

        $ ant -Dwhich.cmd=ls

        which:
        Found /bin/ls
    </description>

    <!--
    Properties
    -->
    <property environment="env"/>
    <property name="which.cmd" value="ls"/>

    <!--
    Bootstrap the build for ANT installations without ivy pre-installed
    -->
    <target name="bootstrap" description="Install ivy">
        <mkdir dir="${user.home}/.ant/lib"/>
        <get src="http://search.maven.org/remotecontent?filepath=org/apache/ivy/ivy/2.3.0-rc1/ivy-2.3.0-rc1.jar" dest="${user.home}/.ant/lib/ivy.jar"/>
    </target>

    <!--
    Download groovy
    -->
    <target name="resolve" description="Resolve build dependencies">
        <ivy:cachepath pathid="build.path">
            <dependency org="org.codehaus.groovy" name="groovy-all" rev="2.0.1" conf="master"/>
        </ivy:cachepath>

        <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="build.path"/>
    </target>

    <!--
    Parse the PATH variable and determine if the command is available
    -->
    <target name="which" depends="resolve" description="ANT which command">
        <groovy>
            <arg value="${which.cmd}"/>

            def sepchar = properties["path.separator.ivy.instance"]

            properties["env.PATH"].split(sepchar).each {
                def dir = new File(it)

                if (dir.exists()) {
                    dir.eachFileMatch(~/^${args[0]}(.bat|.cmd)?$/) {
                        project.log "Found ${it}"
                    }
                }
            }
        </groovy>
    </target>

    <!--
    Cleanup
    -->
    <target name="clean" description="Purge the ivy cache">
        <ivy:cleancache/>
    </target>

</project>
于 2012-08-27T22:12:42.247 に答える