doc_src/set.txt: -U affects only the user running the command, not all users

This commit is contained in:
Dennis Schridde 2018-10-10 09:52:20 +02:00 committed by Fabian Homborg
parent 1f0085bc08
commit e3643c610f

View file

@ -29,7 +29,7 @@ The following options control variable scope:
- `-g` or `--global` causes the specified shell variable to be given a global scope. Non-global variables disappear when the block they belong to ends
- `-U` or `--universal` causes the specified shell variable to be given a universal scope. If this option is supplied, the variable will be shared between all the current users fish instances on the current computer, and will be preserved across restarts of the shell.
- `-U` or `--universal` causes the specified shell variable to be given a universal scope. If this option is supplied, the variable will be shared between all the current user's fish instances on the current computer, and will be preserved across restarts of the shell.
- `-x` or `--export` causes the specified shell variable to be exported to child processes (making it an "environment variable")