Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does set -e and set -a do in bash.What are other options that i can use with set command [closed]

Tags:

manpage

I would like to know as what do below commands do in bash.

  • set -e
  • set -a

What are other options that i can use with set and what do they mean.

like image 447
thinkingmonster Avatar asked Aug 26 '16 09:08

thinkingmonster


People also ask

What does set command do in bash?

set allows you to change the values of shell options and set the positional parameters, or to display the names and values of shell variables.

WHAT IS SET command used for?

The set command is a built-in Linux shell command that displays and sets the names and values of shell and Linux environment variables. On Unix-like operating systems, the set command functions within the Bourne shell ( sh ), C shell ( csh ), and Korn shell ( ksh ).

Why set command is used in Linux?

Linux set command is used to set and unset certain flags or settings within the shell environment. These flags and settings determine the behavior of a defined script and help in executing the tasks without facing any issue.

What is the use of set in Unix?

The set command assigns a value to a variable (or multiple values to multiple variables). Without any options, all set variables are shown.


1 Answers

From the man page:

-a Mark variables and function which are modified or created for export to the environment of subsequent commands

-e Exit immediately if a pipeline (see Pipelines), which may consist of a single simple command (see Simple Commands), a list (see Lists), or a compound command (see Compound Commands) returns a non-zero status. The shell does not exit if the command that fails is part of the command list immediately following a while or until keyword, part of the test in an if statement, part of any command executed in a && or || list except the command following the final && or ||, any command in a pipeline but the last, or if the command’s return status is being inverted with !. If a compound command other than a subshell returns a non-zero status because a command failed while -e was being ignored, the shell does not exit. A trap on ERR, if set, is executed before the shell exits.

This option applies to the shell environment and each subshell environment separately (see Command Execution Environment), and may cause subshells to exit before executing all the commands in the subshell.

If a compound command or shell function executes in a context where -e is being ignored, none of the commands executed within the compound command or function body will be affected by the -e setting, even if -e is set and a command returns a failure status. If a compound command or shell function sets -e while executing in a context where -e is ignored, that setting will not have any effect until the compound command or the command containing the function call completes.

like image 74
Jens Avatar answered Sep 21 '22 17:09

Jens