forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set: add page (tldr-pages#2268) (tldr-pages#2294)
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# set | ||
|
||
> Display, set or unset values of shell attributes and positional parameters. | ||
- 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}}` |