/usr/bin/dash: Difference between revisions

Line 104: Line 104:


=== Reserved Words ===
=== Reserved Words ===
    Reserved words are words that have special meaning to the shell and are recognized at the beginning of
予約語とは、シェルにとって特別な意味を持つ言葉で、行頭や制御演算子の後に認識される。 以下は予約語である:
    a line and after a control operator.  The following are reserved words:


<syntaxhilight lang="bash">
           !      elif    fi      while  case
           !      elif    fi      while  case
           else    for    then    {      }
           else    for    then    {      }
           do      done    until  if      esac
           do      done    until  if      esac
</syntaxhilight>


    Their meaning is discussed later.
その意味については後述する。


=== Aliases ===
=== Aliases ===