Linux: Apply same command for multiple files

PHOTO EMBED

Sun Aug 28 2022 22:11:28 GMT+0000 (Coordinated Universal Time)

Saved by @marcopinero #bash

$ find <folderpath> -name <filemask> -exec <command> <extra parameters> {} \;
content_copyCOPY

Using find + exec is possible to execute same command to multiple files using mask.