Shell - Reserved Words

Bash Liste Des Attaques Ovh

About

Reserved words in bash.

This words are recognized as reserved when:

  • unquoted
  • and
    • either the first word of a simple command
    • or the third word of a case or for command.

List

  • ! : logical negation
  • case
  • do
  • done
  • elif
  • else
  • esac
  • fi
  • for
  • function
  • if
  • in
  • select
  • then
  • until
  • while
  • {
  • }
  • time
  • [[
  • ]]





Discover More
Bash Liste Des Attaques Ovh
Bash - Complete (Builtin command) - Completion

The programmable completion feature in Bash permits typing a partial command, then pressing the [Tab] key to auto-complete the command sequence The process of applying these completion specifications...
Bash Liste Des Attaques Ovh
Bash - Function

A shell function is an object that: is called like a simple command and executes a compound command with a new set of positional parameters. By convention, the function name starts with an underscore....
Bash Liste Des Attaques Ovh
Bash - Quoting

$, ‘, “, \, or . A double quote may be quoted within double quotes by preceding it with a backslash. If enabled, history expansion will be performed unless an ! appearing in double quotes is...
Bash Liste Des Attaques Ovh
Bash - time (Execution Time Measurement)

time is a bash reserved word to print the time statistics (elapsed (wall-clock) time and user and system time. The use of time as a reserved word permits the timing of: Bash builtins, Bash functions,...



Share this page:
Follow us:
Task Runner