/usr/bin/bash: Difference between revisions

Line 878: Line 878:


=== Redirecting Input ===
=== Redirecting Input ===
      Redirection of input causes the file whose name results from the expansion of word to  be  opened
入力をリダイレクトすると、wordを展開した結果の名前のファイルが、ファイル記述子n、またはnが指定されていない場合は標準入力(ファイル記述子0)で読み込むためにオープンされる。
      for  reading  on  file descriptor n, or the standard input (file descriptor 0) if n is not speci‐
      fied.


      The general format for redirecting input is:
入力をリダイレクトする一般的な書式は以下の通りである:


              [n]<word
:<code>[n]<word</code>


=== Redirecting Output ===
=== Redirecting Output ===