Function that calculates the sha1 hash of 1. the backup partition and 2. the backup image simultaneously.
[ecp code=”simultaneous_tasks_in_bash”]
Structure
sha1sum backup partition &
sha1sum backup image &
wait $(jobs -p)
Working
The & creates a background task, which can be viewed using jobs or top.