Difference between revisions of "Exec (Bash)"
Jump to navigation
Jump to search
↑ https://askubuntu.com/questions/525767/what-does-an-exec-command-do
Line 4: | Line 4: | ||
* https://manpages.ubuntu.com/manpages/trusty/en/man1/bash.1.html | * https://manpages.ubuntu.com/manpages/trusty/en/man1/bash.1.html | ||
− | |||
exec [-cl] [-a name] [command [arguments]] | exec [-cl] [-a name] [command [arguments]] | ||
Line 18: | Line 17: | ||
current shell, and the return status is 0. If there is a redirection error, the | current shell, and the return status is 0. If there is a redirection error, the | ||
return status is 1. | return status is 1. | ||
− | |||
Revision as of 17:43, 14 November 2022
exec [-cl] [-a name] [command [arguments]] If command is specified, it replaces the shell. No new process is created. The arguments become the arguments to command. If the -l option is supplied, the shell places a dash at the beginning of the zeroth argument passed to command. This is what login(1) does. The -c option causes command to be executed with an empty environment. If -a is supplied, the shell passes name as the zeroth argument to the executed command. If command cannot be executed for some reason, a non- interactive shell exits, unless the execfail shell option is enabled. In that case, it returns failure. An interactive shell returns failure if the file cannot be executed. If command is not specified, any redirections take effect in the current shell, and the return status is 0. If there is a redirection error, the return status is 1.
Related
See also
Bash [ -c ]
,alias
,&&
, Bash history, Autocompletion,set
,unset
,export
,.bash_aliases, .bashrc and .bash profile
,PS1
,echo
,brace expansion
, Function,shopt
,trap
,set -e
,source
,PATH
,complete
,disown
,.hushlogin
,.bashrc
,builtin
,eval
,set
,$PATH
,$HOME
,TZ
,.profile
,-e, -i
,Builtin (Bash)
,mapfile
,~
, return (Bash), for, until,declare, dirname, basename, functions.sh
, Bash arithmetic expansion,shift, bash --rcfile, readonly, $1, $@
Advertising: