linux shell的here document用法(cat << EOF)

什麼是Here Document?
Here Document
是在Linux Shell 中的一種特殊的重定向方式,它的基本的形式以下
cmd << delimiter
  Here Document Content
delimiter

其做用是將兩個 delimiter 之間的內容(Here Document Content 部分) 傳遞給cmd 做爲輸入參數;
好比在終端中輸入cat << EOF,系統會提示繼續進行輸入,輸入多行信息再輸入EOF,中間輸入的信息將會顯示在屏幕上;以下:
fish@mangos:~$ cat << EOF
> First Line
> Second Line
> Third Line EOF
> EOF
First Line
Second Line
Third Line EOF
:'>'這個符號是終端產生的提示輸入信息的標識符
 
這裏要注意幾點:
EOF
只是一個標識而已,能夠替換成任意的合法字符(約定大於配置);
做爲結尾的delimiter必定要頂格寫,前面不能有任何字符;
做爲結尾的delimiter後面也不能有任何的字符(包括空格!!!);
做爲起始的delimiter先後的空格會被省略掉;


Here Document
不只能夠在終端上使用,在shell 文件中也能夠使用,例以下面的here.sh 文件
cat << EOF > output.txt
echo "hello"
echo "world"
EOF

使用 sh here.sh 運行這個腳本文件,會獲得output.txt 這個新文件,其內容以下:
echo "hello"
echo "world"

Here Document
的變形

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
 
可是有時候不想展開這個變量怎麼辦呢,能夠經過在起始的 delimiter的先後添加 " 來實現,例如將上面的here.sh 改成
cat << "EOF" > output.sh  #
注意引號
echo "This is output"
echo $1
EOF

獲得的output.sh 的內容爲
echo "This is output"
echo $1

<<
變爲 <<-

Here Document
還有一個用法就是將 '<<' 變爲 '<<-'
使用 <<- 的惟一變化就是Here Document 的內容部分每行前面的tab(製表符)將會被刪除掉;
該用法在編寫Here Document時可將內容部分進行縮進,方便閱讀代碼.
shell

 

轉自:https://blog.csdn.net/wangjunjun2008/article/details/24351045spa

相關文章
相關標籤/搜索