【Shell指令碼學習24】Shell輸入輸出重新導向:Shell Here Document,/dev/null檔案

來源:互聯網
上載者:User

標籤:

Unix 命令預設從標準輸入裝置(stdin)擷取輸入,將結果輸出到標準輸出裝置(stdout)顯示。一般情況下,標準輸入裝置就是鍵盤,標準輸出裝置就是終端,即顯示器。

輸出重新導向

命令的輸出不僅可以是顯示器,還可以很容易的轉移向到檔案,這被稱為輸出重新導向。

命令輸出重新導向的文法為:

  1. $ command > file

這樣,輸出到顯示器的內容就可以被重新導向到檔案。

例如,下面的命令在顯示器上不會看到任何輸出:

  1. $ who > users

開啟 users 檔案,可以看到下面的內容:

$ cat usersoko         tty01   Sep 12 07:30ai          tty15   Sep 12 13:32ruth        tty21   Sep 12 10:10pat         tty24   Sep 12 13:07steve       tty25   Sep 12 13:03$

輸出重新導向會覆蓋檔案內容,請看下面的例子:

$ echo line 1 > users$ cat usersline 1$

如果不希望檔案內容被覆蓋,可以使用 >> 追加到檔案末尾,例如:

$ echo line 2 >> users$ cat usersline 1line 2$
輸入重新導向

和輸出重新導向一樣,Unix 命令也可以從檔案擷取輸入,文法為:

  1. command < file

這樣,本來需要從鍵盤擷取輸入的命令會轉移到檔案讀取內容。

注意:輸出重新導向是大於符號(>),輸入重新導向是小於符號(<)。

例如,計算 users 檔案中的行數,可以使用下面的命令:

$ wc -l users2 users$

也可以將輸入重新導向到 users 檔案:

$ wc -l < users2$

注意:上面兩個例子的結果不同:第一個例子,會輸出檔案名;第二個不會,因為它僅僅知道從標準輸入讀取內容。

重新導向深入講解

一般情況下,每個 Unix/Linux 命令運行時都會開啟三個檔案:

  • 標準輸入檔案(stdin):stdin的檔案描述符為0,Unix程式預設從stdin讀取資料。
  • 標準輸出檔案(stdout):stdout 的檔案描述符為1,Unix程式預設向stdout輸出資料。
  • 標準錯誤檔案(stderr):stderr的檔案描述符為2,Unix程式會向stderr流中寫入錯誤資訊。


預設情況下,command > file 將 stdout 重新導向到 file,command < file 將stdin 重新導向到 file。

如果希望 stderr 重新導向到 file,可以這樣寫:

  1. $command 2 > file

如果希望 stderr 追加到 file 檔案末尾,可以這樣寫:

  1. $command 2 >> file

2 表示標準錯誤檔案(stderr)。

如果希望將 stdout 和 stderr 合并後重新導向到 file,可以這樣寫:

  1. $command > file 2>&1

  1. $command >> file 2>&1

如果希望對 stdin 和 stdout 都重新導向,可以這樣寫:

  1. $command < file1 >file2

command 命令將 stdin 重新導向到 file1,將 stdout 重新導向到 file2。 

全部可用的重新導向命令列表
命令 說明
command > file 將輸出重新導向到 file。
command < file 將輸入重新導向到 file。
command >> file 將輸出以追加的方式重新導向到 file。
n > file 將檔案描述符為 n 的檔案重新導向到 file。
n >> file 將檔案描述符為 n 的檔案以追加的方式重新導向到 file。
n >& m 將輸出檔案 m 和 n 合并。
n <& m 將輸入檔案 m 和 n 合并。
<< tag 將開始標記 tag 和結束標記 tag 之間的內容作為輸入。
Here Document

Here Document 目前沒有統一的翻譯,這裡暫譯為”嵌入文檔“。Here Document 是 Shell 中的一種特殊的重新導向方式,它的基本的形式如下:

  1. command << delimiter
  2. document
  3. delimiter

它的作用是將兩個 delimiter 之間的內容(document) 作為輸入傳遞給 command。

注意:

  • 結尾的delimiter 一定要頂格寫,前面不能有任何字元,後面也不能有任何字元,包括空格和 tab 縮排。
  • 開始的delimiter前後的空格會被忽略掉。


下面的例子,通過 wc -l 命令計算 document 的行數:

$wc -l << EOF    This is a simple lookup program    for good (and bad) restaurants    in Cape Town.EOF3$

也可以 將 Here Document 用在指令碼中,例如:

  1. #!/bin/bash
  2. cat << EOF
  3. This is a simple lookup program
  4. for good (and bad) restaurants
  5. in Cape Town.
  6. EOF

運行結果:

This is a simple lookup programfor good (and bad) restaurantsin Cape Town.


下面的指令碼通過 vi 編輯器將 document 儲存到 test.txt 檔案:

  1. #!/bin/sh
  2. filename=test.txt
  3. vi $filename <<EndOfCommands
  4. i
  5. This file was created automatically from
  6. a shell script
  7. ^[
  8. ZZ
  9. EndOfCommands

運行指令碼:

$ sh test.shVim: Warning: Input is not from a terminal$

開啟 test.txt,可以看到下面的內容:

$ cat test.txtThis file was created automatically froma shell script$
/dev/null 檔案

如果希望執行某個命令,但又不希望在螢幕上顯示輸出結果,那麼可以將輸出重新導向到 /dev/null:

  1. $ command > /dev/null

/dev/null 是一個特殊的檔案,寫入到它的內容都會被丟棄;如果嘗試從該檔案讀取內容,那麼什麼也讀不到。但是 /dev/null 檔案非常有用,將命令的輸出重新導向到它,會起到”禁止輸出“的效果。

如果希望屏蔽 stdout 和 stderr,可以這樣寫:

複製純文字新視窗
  1. $ command > /dev/null 2>&1

【Shell指令碼學習24】Shell輸入輸出重新導向:Shell Here Document,/dev/null檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.