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和輸出重定向一樣,unix 命令也可以從檔案獲取輸入,語法為:$ cat users
line 1
line 2
$
command< file
這樣,本來需要從鍵盤獲取輸入的命令會轉移到檔案讀取內容。
注意:輸出重定向是大於號(>),輸入重定向是小於號(<)。
例如,計算 users 檔案中的行數,可以使用下面的命令:
$ wc -l users也可以將輸入重定向到 users 檔案:2 users
$
$ wc -l < users注意:上面兩個例子的結果不同:第乙個例子,會輸出檔名;第二個不會,因為它僅僅知道從標準輸入讀取內容。一般情況下,每個 unix/linux 命令執行時都會開啟三個檔案:2$
預設情況下,command > file 將 stdout 重定向到 file,command < file 將stdin 重定向到 file。
如果希望 stderr 重定向到 file,可以這樣寫:
$command2> file
如果希望 stderr 追加到 file 檔案末尾,可以這樣寫:
$command2>> 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也可以 將 here document 用在指令碼中,例如:this is a ****** lookup program
for good (and bad) restaurants
in cape town.
eof3
$
#!/bin/bashcat << eof
this is a ****** lookup program
for good (and bad) restaurants
in cape town.
eof
執行結果:
this is a ****** lookup programfor good (and bad) restaurants
in cape town.
下面的指令碼通過 vi 編輯器將 document 儲存到 test.txt 檔案:
#!/bin/shfilename
=test
.txt
vi $filename
a shell script
^[zz
endofcommands
執行指令碼:
$ sh test.sh開啟 test.txt,可以看到下面的內容:vim: warning: input is not from a terminal
$
$ cat test.txt如果希望執行某個命令,但又不希望在螢幕上顯示輸出結果,那麼可以將輸出重定向到 /dev/null:this file was created automatically from
a shell script
$
$ command>
/dev/null
/dev/null 是乙個特殊的檔案,寫入到它的內容都會被丟棄;如果嘗試從該檔案讀取內容,那麼什麼也讀不到。但是 /dev/null 檔案非常有用,將命令的輸出重定向到它,會起到」禁止輸出「的效果。
如果希望遮蔽 stdout 和 stderr,可以這樣寫:
純文字複製
$ command>
/dev/null
2>&
1
30分鐘玩轉Shell Shell函式
函式可以讓我們將乙個複雜功能劃分成若干模組,讓程式結構更加清晰,重複利用率更高。像其他程式語言一樣,shell 也支援函式。shell 函式必須先定義後使用。shell 函式的定義格式如下 function name 如果你願意,也可以在函式名前加上關鍵字 function function fun...
30分鐘玩轉Shell Shell特殊變數
前面已經講到,變數名只能包含數字 字母和下劃線,因為某些包含其他字元的變數有特殊含義,這樣的變數被稱為特殊變數。例如,表示當前shell程序的id,即pid,看下面的 echo 執行結果29949 特殊變數列表 變數 含義 0 當前指令碼的檔名 n傳遞給指令碼或函式的引數。n 是乙個數字,表示第幾個...
五分鐘玩轉git
許多人認為git太混亂,或認為它是一種複雜的版本控制系統,其實不然,這篇文章有助於大家快速上手使用git。使用git前,需要先建立乙個倉庫 repository 您可以使用乙個已經存在的目錄作為git倉庫或建立乙個空目錄。使用您當前目錄作為git倉庫,我們只需使它初始化。git init使用我們指定...