
set
List of commands for set:
-
set:tldr:140d5 set: Prompt the user for a value for the specified variable.$ set /p ${name}=${prompt_string}try on your machineexplain this command
-
set:tldr:2b878 set: List environment variables starting with the specified string.$ set ${name}try on your machineexplain this command
-
set:tldr:41c71 set: Set an environment variable to a specific value.$ set ${name}=${value}try on your machineexplain this command
-
set:tldr:5e4ef set: Set the shell to exit as soon as the first error is encountered (mostly used in scripts).$ set -etry on your machineexplain this command
-
set:tldr:68747 set: Notify of job termination immediately.$ set -btry on your machineexplain this command
-
set:tldr:bb7a3 set: Set various options, e.g. enable `vi` style line editing.$ set -o ${vi}try on your machineexplain this command
-
set:tldr:cdaee set: Display the names and values of shell variables.$ settry on your machineexplain this command
-
set:tldr:f2e2a set: Mark variables that are modified or created for export.$ set -atry on your machineexplain this command