simultaneous tasks in bash

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.

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.