Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
Guillem Jara edited this page Nov 1, 2021 · 4 revisions

A cycle is a set of operations that run in parallel using multithreading, applied to the file if it matches the conditional provided. Cycles are delimited by ;, like this: cycle1_operation1(arg1) cycle1_operation2(arg1); cycle2_operation1(arg1). In that example, cycle1_operation1 & cycle1_operation2 will be run at the same time, and when they finish, cycle2_operation1 will be executed.

You should continue reading what operations are.