1

I have directories that creating by following pattern build_yyyyMMdd_HHmmssSSS
i.e
build_20130304_112343142
build_20130402_102141121

I need to determinate latest created directory in ant build

Does ant has some kind of max function?

Or perhaps you can propose me some another idea?

Thansk

4

2 に答える 2

1

ビルド (およびディレクトリ名) も効果的にアルファベット順に並べられるため、

ls -rd | tail -n 1

最新のものを提供する必要があります。

于 2013-04-17T16:06:03.530 に答える