On Tue, Apr 08, 2025 at 12:16:42AM +0530, Ritesh Harjani wrote: > Zorro Lang <zlang@xxxxxxxxxx> writes: <snip> > > Yeah, nice catch! As the defination of _exit: > > > > _exit() > > { > > status="$1" > > exit "$status" > > } > > > > The > > " > > status=1 > > exit > > " > > should be equal to: > > " > > _exit 1 > > " > > > > And "_exit" looks not make sense, due to it gives null to status. > > > > Same problem likes below: > > > > > > @@ -3776,7 +3773,7 @@ _get_os_name() > > echo 'linux' > > else > > echo Unknown operating system: `uname` > > - exit > > + _exit > > > > > > The "_exit" without argument looks not make sense. > > > > That's right. _exit called with no argument could make status as null. > To prevent such misuse in future, should we add a warning/echo message > if the no. of arguments passed to _exit() is not 1? Why not set status only if the caller provides an argument? test -n "$1" && status="$1" perhaps? --D > -ritesh