edit description for 'shopt' command

This commit is contained in:
Bonnie I-Man Ng 2019-05-17 15:59:33 +08:00 committed by GitHub
parent 834ff1bfbb
commit d8fed85f58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1417,10 +1417,10 @@ unalias ls
# print all shell options
shopt
# to stop alias
# to unset (or stop) alias
shopt -u expand_aliases
# to start alias
# to set (or start) alias
shopt -s expand_aliases
```