标签: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
标签:bash 写入 security 其他 ash lock bin nofile san
原文地址:https://www.cnblogs.com/Sungeek/p/13582025.html