Neomutt Показывать текст письма в режиме предварительного просмотра

Если вам не нужно запускать какие-либо другие команды или делать что-либо еще после вызова скрипта sub -, вы можете использовать:

exec sub_script

exec— это встроенная оболочка, которая:

$ help exec
exec: exec [-cl] [-a name] [command [arguments...]] [redirection...]
    Replace the shell with the given command.

    Execute COMMAND, replacing this shell with the specified program.
    ARGUMENTS become the arguments to COMMAND.  If COMMAND is not specified,
    any redirections take effect in the current shell.

    Options:
      -a name   pass NAME as the zeroth argument to COMMAND
      -c    execute COMMAND with an empty environment
      -l    place a dash in the zeroth argument to COMMAND

    If the command cannot be executed, a non-interactive shell exits, unless
    the shell option `execfail' is set.

    Exit Status:
    Returns success unless COMMAND is not found or a redirection error occurs.

Таким образом, после запуска exec sub_scriptвы окончательно вышли из родительского сценария и не можете вернуться к нему снова.

1
27.05.2020, 20:11
0 ответов

Теги

Похожие вопросы