shell echo单行和多行文字定向写入到文件中
单行文本:
#!/bin/bash echo "192.168.85.24 tsedb">> /etc/hosts
多行文本:
<<EOF告诉主shell,后续的输入,是其他命令或者子shell的输入,直到遇到EOF为止
#!/bin/bash cat > /etc/security/limits.conf<< EOF #tsedb SETTING tsedb soft nproc 16384 tsedb hard nproc 16384 tsedb soft nofile 16384 tsedb hard nofile 65536 tsedb soft stack 10240 tsedb hard stack 32768 tsedb hard memlock 8000000 tsedb soft memlock 8000000 EOF
作者:Tse先生
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接。