Linux CLI 58 🐧 shell functions part 2
a – shell functions return codesfunction return codes are used to indicate the success or failure of a function’s execution.also known as exit statusesa return code of 0 indicates successful executionwhile any other value indicates an error or failure.return 0 → returns 0 for successful executionreturn 1 → return 1 for non succesful executioncheck_success $?…