Linux中ulimit -c生成core文件()

理解这六个shell脚本语言的功能

echo “kernel.core_pattern = /tmp/core-%e-%p-%t” >> /etc/sysctl.conf
sysctl -p /etc/sysctl.conf
echo “ulimit -c unlimited”>>/etc/profile
ulimit -c unlimited
kill -9 ps -ef | grep remote_server.py | grep -v grep| awk '{print $2}'
nohup python remote_server.py &

https://blog.csdn.net/test1280/article/details/73655994讲解了第四句的功能

本人目前在学习python、前端、数据库和linux相关的内容,故打算写一些学习笔记,包括安装软件遇到的一些问题、编程语言的学习。 学习如逆水行舟,你在原地踏步的同时,别人一直在前进!
原文地址:https://www.cnblogs.com/souhaite/p/10585590.html