##什麼是Here Document## Here Document 是在Linux Shell 中的一種特殊的重定向方式,它的基本的形式以下shell
cmd << delimiter Here Document Content delimiter
它的做用就是將兩個 delimiter 之間的內容(Here Document Content 部分) 傳遞給cmd 做爲輸入參數。code
好比在終端中輸入cat << EOF
,系統會提示繼續進行輸入,輸入多行信息再輸入EOF,中間輸入的信息將會顯示在屏幕上。以下:ip
fish@mangos:~$ cat << EOF > First Line > Second Line > Third Line EOF > EOF First Line Second Line Third Line EOF
注: >
這個符號是終端產生的提示輸入信息的標識符get
這裏要注意幾點cmd
Here Document 不只能夠在終端上使用,在shell 文件中也能夠使用,例以下面的here.sh 文件it
cat << EOF > output.sh echo "hello" echo "world" EOF
使用 sh here.sh
運行這個腳本文件,會獲得output.sh 這個新文件,裏面的內容以下pip
echo "hello" echo "world"
###delimiter 與變量### 在Here Document 的內容中,不只能夠包括普通的字符,還能夠在裏面使用變量,例如將上面的here.sh 改成變量
cat << EOF > output.sh echo "This is output" echo $1 EOF
使用sh here.sh HereDocument
運行腳本獲得output.sh的內容終端
echo "This is output" echo HereDocument
在這裏 $1
被展開成爲了腳本的參數 HereDocument
im
可是有時候不想展開這個變量怎麼辦呢,能夠經過在起始的 delimiter的先後添加 "
來實現,例如將上面的here.sh 改成
cat << "EOF" > output.sh #注意引號 echo "hello" echo "world" EOF
獲得的output.sh 的內容爲
echo "This is output" echo $1
###<< 變爲 <<-### Here Document 還有一個用法就是將 '<<' 變爲 '<<-'。 使用 <<-
的惟一變化就是Here Document 的內容部分每行前面的 tab (製表符)將會被刪除掉,這種用法是爲了編寫Here Document的時候能夠將內容部分進行縮進,方便閱讀代碼。
##參考連接## Wiki: Here Document<br /> Learn Linux, 101: Streams, pipes, and redirects