摘要: install sudo apt install doxygen sudo apt install graphviz use cd src# src is the code dir doxygen -g Doxygen.config #gengerate the default config fil 阅读全文
posted @ 2022-11-24 16:42 simp00 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 不断运行与调试代码的时候 需要查询pid 并kill这个程序 就做了这个shell脚本 #!/bin/bash target=$1 ps -ef|grep -v grep|grep ${target} |awk '{print $2}'|while read pid do kill -9 $pid 阅读全文
posted @ 2022-11-24 09:28 simp00 阅读(22) 评论(0) 推荐(0) 编辑