bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Request: a command to do a return completely in normal, ie. not subshell


From: Budi
Subject: Request: a command to do a return completely in normal, ie. not subshell
Date: Tue, 15 Dec 2020 10:15:35 +0700

Can we have a command to do a return completely (as if it returns from
main function) when it is being in a third nested function call, in
order to get back to shell prompt at once, in normal, ie. not
subshell?

My main function invocation here will fully shut down terminal if exit
command is given.

c(){
local p
#...

[ "$p" = err ] && kill $TID

#...
}

b(){
#...
c
#...
}

a(){
export TID=$$
#...

b
#...
#...
}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]