setset
[options arg1 arg2 ...
]
With no arguments, set
prints the values of all variables known to the current shell. Options can be enabled ( OptionsExamplesset - "$num" -20 -30 Set $1 to $num, $2 to -20, $3 to -30 set -vx Read each command line; show it; execute it; show it again (with arguments) set +x Stop command tracing set -o noclobber Prevent file overwriting set +o noclobber Allow file overwriting again |
|