This example shows how to run commands in parallel in bash. First, the script prints 'Start'. Then it launches two sleep commands with '&' so they run at the same time in the background. The script uses 'wait' to pause until both sleep commands finish. After that, it prints 'Done'. The variable tracker shows how background jobs increase when commands start and reset after wait. Key points are that '&' runs commands in parallel and 'wait' pauses until all finish. Without '&', commands run sequentially. Without 'wait', the script prints 'Done' immediately without waiting. This pattern helps run tasks faster by doing them at the same time.