随笔 - 170
文章 - 0
评论 - 16
阅读 -
35387
01 2024 档案
bash把显示到屏幕的内容隐藏起来的方法
摘要:if ! pgrep -x "进程名" > /dev/null; then echo "进程不存在" else echo "进程存在" fi
阅读全文
C语言字符串函数
摘要:#include <string.h> index(3) memchr(3), rindex(3), strchr(3), string(3), strpbrk(3), strsep(3), strstr(3), strtok(3), wcscspn(3), wcsspn strchr(3), st
阅读全文