如何使用此处的文档将数据写入 Bash 脚本中的文件
如何使用 heredoc 重定向功能(here document)将数据写入我的 bash shell 脚本中的文件?
here document 只不过是 I/O 重定向,它告诉 bash shell 从当前源读取输入,直到看到仅包含分隔符的行。
这对于向 ftp、cat、echo、ssh 和许多其他有用的 Linux/Unix 命令提供命令非常有用。此功能也适用于 bash 或 Bourne/Korn/POSIX shell。
here document 只不过是 I/O 重定向,它告诉 bash shell 从当前源读取输入,直到看到仅包含分隔符的行。
这对于向 ftp、cat、echo、ssh 和许多其他有用的 Linux/Unix 命令提供命令非常有用。此功能也适用于 bash 或 Bourne/Korn/POSIX shell。
heredoc 语法
语法是:
command <<EOF cmd1 cmd2 arg1 EOF
或者允许使用EOF<<-以自然方式缩进 shell 脚本中的此处文档
command <<-EOF msg1 msg2 $var on line EOF
或者
command <<'EOF' cmd1 cmd2 arg1 $var won't expand as parameter substitution turned off by single quoting EOF
或者重定向并覆盖到名为 my_output_file.txt 的文件:
command <<EOF > my_output_file.txt mesg1 msg2 msg3 $var on $foo EOF
或者重定向并将其附加到名为 my_output_file.txt 的文件:
command <<EOF >> my_output_file.txt mesg1 msg2 msg3 $var on $foo EOF
示例
以下脚本将所需内容写入名为 /tmp/output.txt 的文件中:
#!/bin/bash OUT=/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/
禁用路径名/参数/变量扩展、命令替换、算术扩展
变量(例如 $HOME)和命令(例如 $(date))在脚本中被解释为替换。要禁用它,请使用带有“EOF”的单引号,如下所示:
#!/bin/bash OUT=/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 follows 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 $(date) Backing up files $HOME and /etc/
关于使用 tee 命令的注意事项
语法是:
tee /tmp/filename <<EOF >/dev/null line 1 line 2 line 3 $(cmd) $var on $foo EOF
或者通过在单引号中引用 EOF 来禁用变量替换/命令替换:
tee /tmp/filename <<'EOF' >/dev/null line 1 line 2 line 3 $(cmd) $var on $foo EOF
这是我更新的脚本:
#!/bin/bash OUT=/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..."
关于使用内存中 here-docs 的说明
这是我更新的脚本:
#!/bin/bash OUT=/tmp/output.txt ## in memory here docs ## thanks https://twitter.com/freebsdfrau exec 9<<EOF Status of backup as on $(date) Backing up files $HOME and /etc/ EOF ## continue echo "Starting my script..." echo "Doing something..." ## do it cat <&9 >$OUT echo "Starting backup using rsync..."