Linux set Command & How to Use it {9 Examples} (2024)

Introduction

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).

In this tutorial, you will learn what the set command is and how to use it.

Linux set Command & How to Use it {9 Examples} (1)

Prerequisites

  • A system running Linux.
  • Access to a terminal/command line.

Linux set Command Syntax

The general syntax for the set command is:

set [options] [arguments]

Options

In the context of the set command, [options] are settings or flags that are set or unset in the Bash shell environment. Use it to influence the behavior of defined shell scripts and help execute the desired tasks.

  • Set an option by using a minus sign (-) followed by the appropriate option.
  • Unset an option by using a plus sign (+) followed by the appropriate option.

Arguments

[arguments] are positional parameters and they are assigned in order with the following parameters:

  • $1
  • $2
  • ...
  • $n

Not specifying any options or arguments causes the command to print all shell variables.

Exit Values

The set command has three exit values:

  • 0. Marks a successful completion.
  • 1. Failure caused by an invalid argument.
  • 2. Failure resulting in a usage message, usually because an argument is missing.

Linux set Command Options

The set command provides an extensive list of options that can be combined.

Most options have a corresponding -o flag that can be used to invoke the option. The table below lists all options and their respective alternative form using the -o flag syntax.

Options-o flagsDescription
-a -o allexportMarks all created or modified variables or functions for export.
-b-o notifyAlerts the user upon background job termination.
-e-o errexitInstructs a shell to exit if a command fails, i.e., if it outputs a non-zero exit status.
-f-o noglobDisables filename generation (globbing).
-h-o hashallLocates and saves function commands when a function is defined. The -h option is enabled by default.
-k-o keywordPlaces all assignment arguments in the environment for a command, not just those preceding the command name.
-n-o noexecReads commands but doesn't execute them.
-m -o monitor Displays a message when a task completes.
-p-o privilegedDisables the $ENV file processing and shell functions importing. The -p option is enabled by default when the real and effective user IDs don't match. Turning it off sets the effective uid and gid to the real uid and gid.
-t-o onecmdReads one command and then exits.
-u-o nounsetTreats unset or undefined variables as an error when substituting (during parameter expansion). Does not apply to special parameters such as wildcard * or @.
-v-o verbosePrints out shell input lines while reading them.
-x-o xtracePrints out command arguments during execution.
-B-o braceexpandPerforms shell brace expansion.
-C-o noclobberPrevents overwriting existing regular files by output redirection. By default, Bash allows redirected output to overwrite existing files.
-E-o errtraceCauses shell functions to inherit the ERR trap.
-H-o histexpandEnables style history substitution. The option is on by default when the shell is interactive.
-P-o physicalPrevents symbolic link following when executing commands.
-T-o functraceCauses shell functions to inherit the DEBUG trap.
--n/aAssigns the remaining arguments to the positional parameters. If there are no remaining arguments, unsets the positional parameters.
- n/a Assigns any remaining arguments to the positional parameters. Turns off the -x and -v options.
n/a -o emacsUses and emacs-style line editing interface.
n/a -o historyEnables command history.
n/a -o ignoreeofThe shell doesn't quit upon reading the end of file.
n/a -o interactive-commentsAllows comments in interactive commands.
n/a -o nologDoes not record function definitions in the history file.
n/a -o pipefailThe return value of a pipeline is the status of the last command that had a non-zero status upon exit. If no command had a non-zero status upon exit, the value is zero.
n/a -o posixCauses Bash to match the standard when the default operation differs from the Posix standard.
n/a -o viUses a line editing interface similar to vi.

Linux set Command Examples

This section lists examples of the most common uses of the set command.

Using the set Command Without Options

Running the command without options or arguments outputs a list of all settings - the names and values of all shell variables and functions. Since the list is very long, you can scroll through it using the Page Up and Page Down keys.

Following is an example of a partial set command output:

Linux set Command & How to Use it {9 Examples} (2)

Script Debugging

The set command is especially handy when you are trying to debug your scripts. Use the -x option with the set command to see which command in your script is being executed after the result, allowing you to determine each command's result.

The following example demonstrates how to debug scripts with set -x. Follow the steps below:

1. Run set -x:

set -x

2. Use your favorite text editor (we use the vi editor) to create a script. We created a simple loop that allows us to see the -x option effects:

x=10while [ $x -gt 0 ]; do x=$[ $x-1 ] echo $x sleep 2done

3. Make sure to chmod the script to make it executable. This step is always mandatory before running a script. The syntax is:

chmod +x [script-name.sh]

4. Execute the script. The syntax is:

./[script-name.sh]
Linux set Command & How to Use it {9 Examples} (3)

The output prints one line at a time, runs it, shows the result if there is one, and moves on to the next line.

Another way to enable debugging is to place the -x flag on the shebang line of the script:

#!/bin/bash -x

Script Exporting

Automatically export any variable or function created using the -a option. Exporting variables or functions allows other subshells and scripts to use them.

Enable script exporting by running the following command:

set -a

The following example shows how script exporting works. Follow the steps below:

1. Create a new script using your editor of choice. For example:

one=1two=2three=3four=4/bin/bash

The /bin/bash argument marks the start of a new shell.

2. Check if the script works in a new shell:

echo $one $two $three $four
Linux set Command & How to Use it {9 Examples} (4)

The output proves that the function we created was exported and works even when starting a new shell.

Exit When a Command Fails

Use the -e option to instruct a script to exit if it encounters an error during execution. Stopping a partially functional script helps prevent issues or incorrect results.

Create a script with the following contents to test this option:

#!/bin/bashset -ecat nonexistingfileecho "The end"
Linux set Command & How to Use it {9 Examples} (5)

In the example above, the script encounters an error when trying to show the contents of nonexistingfile because that file doesn't exist, causing it to exit at that point. Thus, the final echo command isn't executed.

Note: You can use the cat command to show a file's contents in a terminal window.

Prevent Data Loss

The default Bash setting is to overwrite existing files. However, using the -C option configures Bash not to overwrite an existing file when output redirection using >, >&, or <> is redirected to that file.

For example:

Linux set Command & How to Use it {9 Examples} (6)

Bash first allows us to overwrite the listing.txt file. However, after running the set -C command, Bash outputs a message stating that it cannot overwrite an existing file.

Report Non-Existent Variables

The default setting in Bash is to ignore non-existent variables and work with existing ones. Using the -u option prevents Bash from ignoring variables that don't exist and makes it report the issue.

For example, the following script doesn't contain the set -u command and Bash ignores that $var2 isn't defined.

#!/bin/bashvar1="123"echo $var1 $var2

The output contains only $var1.

Linux set Command & How to Use it {9 Examples} (7)

However, changing the script and adding the set -u command prevents Bash from ignoring the problem and reports it:

#!/bin/bashset -uvar1="123"echo $var1 $var2
Linux set Command & How to Use it {9 Examples} (8)

Set Positional Parameters

The set command can also assign values to positional parameters. A positional parameter is a shell variable whose value is referenced using the following syntax:

$[N]

The [N] value is a digit that denotes the position of the parameter. For example, $1 is the first positional parameter, $2 is the second parameter, etc.

For example:

set first second third

Running the command above sets first to correspond to the $1 positional parameter, second to $2, and third to $3. Check this with the echo command:

echo $2
Linux set Command & How to Use it {9 Examples} (9)

Unset positional parameters by running:

set --

Split Strings

Use the set command to split strings based on spaces into separate variables. For example, split the strings in a variable called myvar, which says "This is a test".

myvar="This is a test"set -- $myvarecho $1echo $2echo $3echo $4
Linux set Command & How to Use it {9 Examples} (10)

Use this option to extract and filter out information from the output of a command, similar to what the awk command does.

Set allexport and notify Flags

The -o allexport flag allows you to automatically export all subsequently defined variables, while the -o notify flag instructs the shell to print job completion messages right away.

To set the flags, run:

set -o allexport -o notify

In the following example, we see that the shell notifies you upon background job completion since the script was exported:

Linux set Command & How to Use it {9 Examples} (11)

Note: If you want to run a process in the background, add the ampersand (&) symbol at the end of the command.

Conclusion

You now know what the set command is and how you can use it in Linux. Test out the different options to better understand the command and maximize your control of the Linux environment used by different packages.

If Bash is an interesting topic for you, check out our comprehensive tutorial on Bash Functions: How to Use Them.

Linux set Command & How to Use it {9 Examples} (2024)

References

Top Articles
Latest Posts
Article information

Author: Catherine Tremblay

Last Updated:

Views: 5677

Rating: 4.7 / 5 (67 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Catherine Tremblay

Birthday: 1999-09-23

Address: Suite 461 73643 Sherril Loaf, Dickinsonland, AZ 47941-2379

Phone: +2678139151039

Job: International Administration Supervisor

Hobby: Dowsing, Snowboarding, Rowing, Beekeeping, Calligraphy, Shooting, Air sports

Introduction: My name is Catherine Tremblay, I am a precious, perfect, tasty, enthusiastic, inexpensive, vast, kind person who loves writing and wants to share my knowledge and understanding with you.