溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Bash腳本中怎么使用here文檔將數(shù)據(jù)寫入文件

發(fā)布時間:2021-08-30 17:47:16 來源:億速云 閱讀:189 作者:chen 欄目:系統(tǒng)運維

這篇文章主要介紹“Bash腳本中怎么使用here文檔將數(shù)據(jù)寫入文件”,在日常操作中,相信很多人在Bash腳本中怎么使用here文檔將數(shù)據(jù)寫入文件問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Bash腳本中怎么使用here文檔將數(shù)據(jù)寫入文件”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

 Bash腳本中怎么使用here文檔將數(shù)據(jù)寫入文件

here document(LCTT 譯注:here 文檔又稱作 heredoc )不是什么特殊的東西,只是一種 I/O 重定向方式,它告訴 bash shell 從當(dāng)前源讀取輸入,直到讀取到只有分隔符的行。

這對于向 ftp、cat、echo、ssh 和許多其他有用的 Linux/Unix 命令提供指令很有用。 此功能適用于 bash 也適用于 Bourne、Korn、POSIX 這三種 shell。

here 文檔語法

語法是:

command <<EOFcmd1cmd2 arg1EOF

或者允許 shell 腳本中的 here 文檔使用 EOF<<- 以自然的方式縮進(jìn):

command <<-EOF  msg1  msg2   $var on line EOF

或者

command <<'EOF' cmd1 cmd2 arg1 $var won't expand as parameter substitution turned off by single quotingEOF

或者 重定向并將其覆蓋 到名為 my_output_file.txt 的文件中:

command <<EOF > my_output_file.txt mesg1 msg2 msg3 $var on $fooEOF

重定向并將其追加到名為 my_output_file.txt 的文件中:

command <<EOF >> my_output_file.txt mesg1 msg2 msg3 $var on $fooEOF

示例

以下腳本將所需內(nèi)容寫入名為 /tmp/output.txt 的文件中:

#!/bin/bashOUT=/tmp/output.txt echo "Starting my script..."echo "Doing something..." cat <<EOF >$OUT  Status of backup as on $(date)  Backing up files $HOME and /etc/EOF echo "Starting backup using rsync..."

你可以使用cat命令查看/tmp/output.txt文件:

$ cat /tmp/output.txt

示例輸出:

 Status of backup as on Thu Nov 16 17:00:21 IST 2017 Backing up files /home/vivek and /etc/

禁用路徑名/參數(shù)/變量擴(kuò)展、命令替換、算術(shù)擴(kuò)展

$HOME 這類變量和像 $(date) 這類命令在腳本中會被解釋為替換。 要禁用它,請使用帶有 'EOF' 這樣帶有單引號的形式,如下所示:

#!/bin/bashOUT=/tmp/output.txt echo "Starting my script..."echo "Doing something..."# No parameter and variable expansion, command substitution, arithmetic expansion, or pathname expansion is performed on word.  # If any part of word is quoted, the delimiter  is  the  result  of  quote removal  on word, and the lines in the here-document # are not expanded. So EOF is quoted as followscat <<'EOF' >$OUT  Status of backup as on $(date)  Backing up files $HOME and /etc/EOF echo "Starting backup using rsync..."

你可以使用 cat 命令查看 /tmp/output.txt 文件:

$ cat /tmp/output.txt

示例輸出:

 Status of backup as on $(date) Backing up files $HOME and /etc/

關(guān)于 tee 命令的使用

語法是:

tee /tmp/filename <<EOF >/dev/nullline 1line 2line 3$(cmd)$var on $fooEOF

或者通過在單引號中引用 EOF 來禁用變量替換和命令替換:

tee /tmp/filename <<'EOF' >/dev/nullline 1line 2line 3$(cmd)$var on $fooEOF

這是我更新的腳本:

#!/bin/bashOUT=/tmp/output.txt echo "Starting my script..."echo "Doing something..." tee $OUT <<EOF >/dev/null  Status of backup as on $(date)  Backing up files $HOME and /etc/EOF echo "Starting backup using rsync..."

關(guān)于內(nèi)存 here 文檔的使用

這是我更新的腳本:

#!/bin/bashOUT=/tmp/output.txt ## in memory here docs ## thanks https://twitter.com/freebsdfrauexec 9<<EOF  Status of backup as on $(date)  Backing up files $HOME and /etc/EOF ## continueecho "Starting my script..."echo "Doing something..." ## do itcat <&9 >$OUT echo "Starting backup using rsync..."

到此,關(guān)于“Bash腳本中怎么使用here文檔將數(shù)據(jù)寫入文件”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI