[Script] Delete ._* metadata files (on macOS)
Posted: 11 Jun 2025, 10:28
This post-processing script uses the dot_clean command to delete ._* dot underbar files:
macOS may create ._* dot underbar files to store Finder information, Unix permissions and xattr metadata when processing files on an external USB flash drive that is formatted with FAT or exFAT. Please read Re: Dot files and AppleSingle and AppleDouble formats for details.
Groovy: Select all
{ source, target ->
system 'dot_clean', '-mvf', target.dir
}
