mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-02 05:55:23 +02:00

* eval, exec, exit, export, readonly, set, shift, trap: use Open Group links * exec, export, trap: split Linux and POSIX
24 lines
547 B
Markdown
24 lines
547 B
Markdown
# set
|
|
|
|
> Display, set or unset values of shell attributes and positional parameters.
|
|
> More information: <https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set>.
|
|
|
|
- Display the names and values of shell variables:
|
|
|
|
`set`
|
|
|
|
- Mark variables that are modified or created for export:
|
|
|
|
`set -a`
|
|
|
|
- Notify of job termination immediately:
|
|
|
|
`set -b`
|
|
|
|
- Set various options, e.g. enable `vi` style line editing:
|
|
|
|
`set -o {{vi}}`
|
|
|
|
- Set the shell to exit as soon as the first error is encountered (mostly used in scripts):
|
|
|
|
`set -e`
|