我想制作一个 shell 脚本来打开一个文件并在文件末尾添加行,然后保存它。
更具体地说,我想让以下命令成为一个 shell 脚本:
$ ulimit -n
1024
如果它小于 65536 那么,
$ vim /etc/security/limits.conf
在文件末尾添加:
root soft nofile 65536
root hard nofile 65536
soft nofile 65536
soft nofile 65536
!wc 在 vim 中。然后重新启动。
如何制作这个shell脚本?