Linux实用命令 发表于 2017-10-23 | 更新于: 2025-03-06 | 分类于 Linux Linux 实用命令Linux 实用命令查看当前特定的所有进程123ps -ef | grep *eg: ps -ef | grep VirtualBox 杀死特定的进程123kill -9 PIDeg: kill -9 63586 查看命令行的历史记录1234history(后面可加number,查最近n条记录)eg: history 10 查看特定命令的历史记录123history | grep *eg: history | grep code-push