码迷,mamicode.com
首页 > 系统相关 > 详细

shell echo单行和多行文字定向写入到文件中

时间:2020-09-09 19:11:53      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:bash   写入   security   其他   ash   lock   bin   nofile   san   

单行文本:

#!/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

 

shell echo单行和多行文字定向写入到文件中

标签:bash   写入   security   其他   ash   lock   bin   nofile   san   

原文地址:https://www.cnblogs.com/Sungeek/p/13582025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!