如何在myconfig.conf
使用BASH 调用的文件中写入多行?
#!/bin/bash
kernel="2.6.39";
distro="xyz";
echo <<< EOL
line 1, ${kernel}
line 2,
line 3, ${distro}
line 4
line ...
EOL >> /etc/myconfig.conf;
cat /etc/myconfig.conf;
如何在myconfig.conf
使用BASH 调用的文件中写入多行?
#!/bin/bash
kernel="2.6.39";
distro="xyz";
echo <<< EOL
line 1, ${kernel}
line 2,
line 3, ${distro}
line 4
line ...
EOL >> /etc/myconfig.conf;
cat /etc/myconfig.conf;
Answers:
语法(<<<
)和使用的命令(echo
)错误。
正确的是:
#!/bin/bash
kernel="2.6.39"
distro="xyz"
cat >/etc/myconfig.conf <<EOL
line 1, ${kernel}
line 2,
line 3, ${distro}
line 4 line
...
EOL
cat /etc/myconfig.conf
这种构造称为“ 此处文档”,可以在Bash手册页的下方找到man --pager='less -p "\s*Here Documents"' bash
。
EOF
,否则它将无法识别,并且会遇到意外的文件结尾错误。