随笔分类 -  tips

摘要:test.sh 内容如下: output_files=("test1 .txt" "test2.txt" "test3.txt" "test4.txt" "test5.txt") # 定义输出文件列表 for client_nums in 14 15 16 do python test.py > " 阅读全文
posted @ 2024-03-23 14:23 七三七3 阅读(49) 评论(0) 推荐(0)
摘要:1.获取pid对应的命令行参数信息 ps -p <pid> -o args= 2.忘记进程号 ps -ef | grep '命令行包含信息'#ps -ef | grep python 3.查看指定端口进程 lsof -i:6006 4.后台运行jupyter nohup jupyter notebo 阅读全文
posted @ 2023-08-29 17:18 七三七3 阅读(15) 评论(0) 推荐(0)