标签: shell unix ant
我正在制作一个ant脚本,我的属性设置为:
MW_HOME=/path/to/scripts
在shell中,我可以使用下面的命令获取基本目录名,即" scripts"在这种情况下 - >
dir_name=$(basename $MW_HOME)
在ant中是否有任何这样的方便命令,或者我是否需要处理该属性来过滤掉相同的内容?有什么建议让它变得简单吗?
答案 0 :(得分:0)
https://ant.apache.org/manual/Tasks/basename.html是ant中的等效命令。
https://ant.apache.org/manual/Tasks/dirname.html是一个类似的命令。