zsh-workers
 help / color / mirror / code / Atom feed
* return builtin to end a script
@ 2024-02-16 12:58 Vincent Lefevre
  2024-02-16 14:24 ` Peter Stephenson
  0 siblings, 1 reply; 3+ messages in thread
From: Vincent Lefevre @ 2024-02-16 12:58 UTC (permalink / raw)
  To: zsh-workers

The return builtin is currently specified only for shell functions
and "." scripts, while it would also be useful to end a script,
for instance to be able to use zsh script both as commands (e.g.
from non-zsh shells) and as autoloaded functions in zsh.

So I think that it would be useful to extend it to end a script.

-- 
Vincent Lefèvre <vincent@vinc17.net> - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: return builtin to end a script
  2024-02-16 12:58 return builtin to end a script Vincent Lefevre
@ 2024-02-16 14:24 ` Peter Stephenson
  2024-02-16 15:00   ` Peter Stephenson
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Stephenson @ 2024-02-16 14:24 UTC (permalink / raw)
  To: zsh-workers

> On 16/02/2024 12:58 GMT Vincent Lefevre <vincent@vinc17.net> wrote:
> 
>  
> The return builtin is currently specified only for shell functions
> and "." scripts, while it would also be useful to end a script,
> for instance to be able to use zsh script both as commands (e.g.
> from non-zsh shells) and as autoloaded functions in zsh.
> 
> So I think that it would be useful to extend it to end a script.

I remember adding this a long time ago now.

% zsh <<<'echo Hello
quote> return
quote> echo Goodbye'
Hello

It looks like the documentation is defective.

pws




> 
> -- 
> Vincent Lefèvre <vincent@vinc17.net> - Web: <https://www.vinc17.net/>
> 100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
> Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: return builtin to end a script
  2024-02-16 14:24 ` Peter Stephenson
@ 2024-02-16 15:00   ` Peter Stephenson
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Stephenson @ 2024-02-16 15:00 UTC (permalink / raw)
  To: zsh-workers

>On 16/02/2024 14:24 GMT Peter Stephenson <p.w.stephenson@ntlworld.com> wrote:
>> On 16/02/2024 12:58 GMT Vincent Lefevre <vincent@vinc17.net> wrote:
>>
>>
>> The return builtin is currently specified only for shell functions
>> and "." scripts, while it would also be useful to end a script,
>> for instance to be able to use zsh script both as commands (e.g.
>> from non-zsh shells) and as autoloaded functions in zsh.
>>
>> So I think that it would be useful to extend it to end a script.
>
> I remember adding this a long time ago now.
>
> It looks like the documentation is defective.

Having looked at the code, I think this does indeed already work,
with the (presumably expected) limitation that in an interactive
shell you don't exit from the outermost shell environment.

pws

diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo
index 1aa8076..7a8654f 100644
--- a/Doc/Zsh/builtins.yo
+++ b/Doc/Zsh/builtins.yo
@@ -1649,7 +1649,9 @@ cindex(functions, returning from)
 item(tt(return) [ var(n) ])(
 Causes a shell function or `tt(.)' script to return to
 the invoking script with the return status specified by
-an arithmetic expression var(n).  
+an arithmetic expression var(n).  Also causes a non-interctive
+shell to exit, allowing files containing shell code to be used
+both as scripts and as autoloadable shell functions.
 For example, the following prints `tt(42)':
 
 example(() { integer foo=40; return "foo + 2" }


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-02-16 15:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-16 12:58 return builtin to end a script Vincent Lefevre
2024-02-16 14:24 ` Peter Stephenson
2024-02-16 15:00   ` Peter Stephenson

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).