Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 370 Bytes

ChecksumSelector.md

File metadata and controls

15 lines (11 loc) · 370 Bytes

Custom Ant Selector :: ChecksumSelector

Description

  • selects files whose checksum matches their filename

Usage

<pathconvert property="findmatches" pathsep="${line.separator}">
	<fileset dir="${build.dir}">
		<include name="**/*.txt" />
		<checksumselector algo="SHA-1" />
	</fileset>
</pathconvert>
<echo>${findmatches}</echo>