How to execute commands in parallel in shell scripts

Batch processing of data recorded in each file is sometimes performed by shell scripts. If there were a large number of files, it could be very time consuming to process them sequentially, waiting for one file to finish before processing the next one. I was looking for a better way and found "GNU p…