Bash脚本中如何使用here文档将数据写入文件

系统 Linux
here 文档 (LCTT 译注:here 文档又称作 heredoc )不是什么特殊的东西,只是一种 I/O 重定向方式,它告诉 bash shell 从当前源读取输入,直到读取到只有分隔符的行。

 

here document (LCTT 译注:here 文档又称作 heredoc )不是什么特殊的东西,只是一种 I/O 重定向方式,它告诉 bash shell 从当前源读取输入,直到读取到只有分隔符的行。

这对于向 ftp、cat、echo、ssh 和许多其他有用的 Linux/Unix 命令提供指令很有用。 此功能适用于 bash 也适用于 Bourne、Korn、POSIX 这三种 shell。

here 文档语法

语法是:

  1. command <<EOF
  2. cmd1
  3. cmd2 arg1
  4. EOF

或者允许 shell 脚本中的 here 文档使用 EOF<<- 以自然的方式缩进:

  1. command <<-EOF
  2. msg1
  3. msg2
  4. $var on line
  5. EOF

或者

  1. command <<'EOF'
  2. cmd1
  3. cmd2 arg1
  4. $var won't expand as parameter substitution turned off
  5. by single quoting
  6. EOF

或者 重定向并将其覆盖 到名为 my_output_file.txt 的文件中:

  1. command <<EOF > my_output_file.txt
  2. mesg1
  3. msg2
  4. msg3
  5. $var on $foo
  6. EOF

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

  1. command <<EOF >> my_output_file.txt
  2. mesg1
  3. msg2
  4. msg3
  5. $var on $foo
  6. EOF

示例

以下脚本将所需内容写入名为 /tmp/output.txt 的文件中:

  1. #!/bin/bash
  2. OUT=/tmp/output.txt
  3.  
  4. echo "Starting my script..."
  5. echo "Doing something..."
  6.  
  7. cat <<EOF >$OUT
  8. Status of backup as on $(date)
  9. Backing up files $HOME and /etc/
  10. EOF
  11.  
  12. echo "Starting backup using rsync..."

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

  1. $ cat /tmp/output.txt

示例输出:

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

禁用路径名/参数/变量扩展、命令替换、算术扩展

$HOME 这类变量和像 $(date) 这类命令在脚本中会被解释为替换。 要禁用它,请使用带有 'EOF' 这样带有单引号的形式,如下所示:

  1. #!/bin/bash
  2. OUT=/tmp/output.txt
  3.  
  4. echo "Starting my script..."
  5. echo "Doing something..."
  6. # No parameter and variable expansion, command substitution, arithmetic expansion, or pathname expansion is performed on word.
  7. # If any part of word is quoted, the delimiter is the result of quote removal on word, and the lines in the here-document
  8. # are not expanded. So EOF is quoted as follows
  9. cat <<'EOF' >$OUT
  10. Status of backup as on $(date)
  11. Backing up files $HOME and /etc/
  12. EOF
  13.  
  14. echo "Starting backup using rsync..."

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

  1. $ cat /tmp/output.txt

示例输出:

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

关于 tee 命令的使用

语法是:

  1. tee /tmp/filename <<EOF >/dev/null
  2. line 1
  3. line 2
  4. line 3
  5. $(cmd)
  6. $var on $foo
  7. EOF

或者通过在单引号中引用 EOF 来禁用变量替换和命令替换:

  1. tee /tmp/filename <<'EOF' >/dev/null
  2. line 1
  3. line 2
  4. line 3
  5. $(cmd)
  6. $var on $foo
  7. EOF

这是我更新的脚本:

  1. #!/bin/bash
  2. OUT=/tmp/output.txt
  3.  
  4. echo "Starting my script..."
  5. echo "Doing something..."
  6.  
  7. tee $OUT <<EOF >/dev/null
  8. Status of backup as on $(date)
  9. Backing up files $HOME and /etc/
  10. EOF
  11.  
  12. echo "Starting backup using rsync..."

关于内存 here 文档的使用

这是我更新的脚本:

  1. #!/bin/bash
  2. OUT=/tmp/output.txt
  3.  
  4. ## in memory here docs
  5. ## thanks https://twitter.com/freebsdfrau
  6. exec 9<<EOF
  7. Status of backup as on $(date)
  8. Backing up files $HOME and /etc/
  9. EOF
  10.  
  11. ## continue
  12. echo "Starting my script..."
  13. echo "Doing something..."
  14.  
  15. ## do it
  16. cat <&9 >$OUT
  17.  
  18. echo "Starting backup using rsync..."

 

责任编辑:庞桂玉 来源: Linux中国
相关推荐

2021-01-18 10:15:40

tee命令BashLinux

2022-11-23 08:14:42

bash 脚本test 命令

2021-05-11 07:50:31

BashShell脚本

2022-11-25 07:53:26

bash脚本字符串

2023-10-19 14:52:27

2023-06-12 12:43:52

Bash脚本

2019-09-17 12:13:05

BashLinuxCPU

2022-03-30 09:32:32

BashtestLinux

2020-10-13 19:04:58

Bash信号捕获Shell脚本

2021-08-30 07:50:42

脚本语言命令行

2021-04-02 06:35:49

Bash读写文件Linux

2023-01-15 17:11:44

Rust

2021-01-14 08:00:00

服务器数据中心DokuWiki

2017-05-05 15:20:03

VimBash脚本bash-suppor

2019-10-22 17:33:57

LinuxBash脚本

2022-11-03 08:13:52

echo 命令Linux

2020-06-24 15:30:39

Bashhistory命令Linux

2021-08-02 15:02:37

Go Excelize 开发

2023-08-23 12:12:45

BashLinux

2012-05-08 10:51:10

Linuxshell脚本
点赞
收藏

51CTO技术栈公众号