first commit, 去掉大文件后新建的git库,和老库的提交17ce6ae一样

This commit is contained in:
tangchao0503
2025-07-30 17:58:30 +08:00
commit e7fd2a7e83
14 changed files with 595 additions and 0 deletions

12
kill_psdk_v2.sh Normal file
View File

@ -0,0 +1,12 @@
#! /bin/bash
psdkpid=$(ps -ef | grep psdk_demo | grep -v grep | awk '{print $2}')
while true ; do
if [ $psdkpid -le 5000 ]; then
#sleep 100s
sudo kill $psdkpid
#echo $psdkpid 'xiaoyu 5000'
fi
done
exit 0