Chaining Parallel Processes on a dependency graph using Bash

Linux , or for this matter, any modern OS allows parallel processing/ multiprocessing. But what if the parallel processes depend on each other. It may be a data dependency as in, the second and third processes is dependent on the first for data. But once the data is ready, second and the third processes can… Continue reading Chaining Parallel Processes on a dependency graph using Bash

Amazing Bash Feature – Recursive brace Expansion

I am not sure how many knew about this amazing feature in bash. But it was sure new for me. Brace expansion is a feature in bash where brackets are expanded automagically and are seperated into multiple arguments When i first encountered this feature , i thought this was some excellent coding for that particular… Continue reading Amazing Bash Feature – Recursive brace Expansion