shell指令碼學習11 輸入輸出重定向

2021-07-22 05:53:11 字數 3689 閱讀 4775

unix 命令預設從標準輸入裝置(stdin)獲取輸入,將結果輸出到標準輸出裝置(stdout)顯示。一般情況下,標準輸入裝置就是鍵盤,標準輸出裝置就是終端,即顯示器。命令的輸出不僅可以是顯示器,還可以很容易的轉移向到檔案,這被稱為輸出重定向。

命令輸出重定向的語法為:

$ command

> file

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

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

$ who > users

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

$ cat users

oko tty01 sep 12 07:30

ai tty15 sep 12 13:32

ruth tty21 sep 12 10:10

pat tty24 sep 12 13:07

steve tty25 sep 12 13:03

$

輸出重定向會覆蓋檔案內容,請看下面的例子:
$ echo line 1 > users

$ cat users

line 1

$

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

$ cat users

line 1

line 2

$

和輸出重定向一樣,unix 命令也可以從檔案獲取輸入,語法為:

command

< file

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

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

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

$ wc -l users

2 users

$

也可以將輸入重定向到 users 檔案:
$ wc -l < users

2$

注意:上面兩個例子的結果不同:第乙個例子,會輸出檔名;第二個不會,因為它僅僅知道從標準輸入讀取內容。一般情況下,每個 unix/linux 命令執行時都會開啟三個檔案:

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

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

$command

2> file

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

$command

2>> file

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

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

$command

> file 2

>&

1

$command

>> file 2

>&

1

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

$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 是 shell 中的一種特殊的重定向方式,它的基本的形式如下:

command

<< delimiter

document

delimiter

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

注意:

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

$wc -l << eof

this is a ****** lookup program

for good (and bad) restaurants

in cape town.

eof3

$

也可以 將 here document 用在指令碼中,例如:

#!/bin/bash

cat << eof

this is a ****** lookup program

for good (and bad) restaurants

in cape town.

eof

執行結果:

this is a ****** lookup program

for good (and bad) restaurants

in cape town.

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

#!/bin/sh

filename

=test

.txt

vi $filename

a shell script

^[zz

endofcommands

執行指令碼:

$ sh test.sh

vim: warning: input is not from a terminal

$

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

this file was created automatically from

a shell script

$

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

$ command

>

/dev/null

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

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

$ command

>

/dev/null

2>&

1

Shell輸入輸出

重定向至檔案 echo用於顯示,read用於讀入,其中person是變數名字,shell中變數用字使用的時候用 框起來 input and output echo what s your name?read person echo hello,效果如下圖 顯示轉義字元 echo it is a te...

shell 輸入輸出

標準輸入 stdin 0,或者 鍵盤 標準輸出 stdout 1,或者 終端顯示器 標準錯誤輸出 stderr 2,2 或者2 指令執行失敗返回的錯誤資訊,終端顯示器 將輸出結果重定向到檔案中 1.覆蓋到檔案中 command outputfile 檔案的完整路徑 兩邊需要空格 2.追加到檔案中 新...

Shell教程(11) 輸入 輸出重定向

大多數 unix 系統命令從你的終端接受輸入並將所產生的輸出傳送回 到您的終端。乙個命令通常從乙個叫標準輸入的地方讀取輸入,預設情況下,這恰好是你的終端。同樣,乙個命令通常將其輸出寫入到標準輸出,預設情況下,這也是你的終端。重定向命令列表如下 需要注意的是檔案描述符 0 通常是標準輸入 stdin ...