Created
June 14, 2023 13:26
-
-
Save ozcanyarimdunya/a1c13294f73f4c4573d47dc8ebe4329b to your computer and use it in GitHub Desktop.
multiprocess.bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in {1..5} ; do | |
(sleep "$i" && echo "worker $i finished") & | |
(sleep "$i" && echo "worker -$i finished") & | |
(sleep "$i" && echo "worker --$i finished") & | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment