标签:src space epo date image print family hit repos
sudo add-apt-repository ppa:shutter/ppa
sudo apt-get update
sudo apt-get install shutter
1、ps 命令用于查看当前正在运行的进程。grep 是搜索
例如: ps -ef | grep shuttle
表示查看所有进程里 CMD 是 shuttle 的进程信息
2、ps -aux | grep shuttle
-aux 显示所有状态
3. kill 命令用于终止进程
例如kill -9 [PID]
-9 表示强迫进程立即停止
通常用 ps 查看进程 PID ,用 kill 命令终止进程
https://www.cnblogs.com/liuzhengliang/p/4609632.html
标签:src space epo date image print family hit repos
原文地址:https://www.cnblogs.com/jlyzxye/p/9486392.html