I searched for noop in bash (:), but was not able to find any good information. What is the exact purpose or use case of this operator?
I tried following and it\'s w
If you use set- e then || : is a great way to not exit the script if a failure happens (it explicitly makes it pass).
set- e
|| :