摘要: object_name? | 查看方法描述 %line magics | 行魔术方法 %%Cell magics | 块魔术方法 !shell | 执行系统命令 Functions that work with code: %run, %edit, %save, %macro, %recall, e 阅读全文
posted @ 2020-09-17 18:21 呓语i 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 批量杀死进程 ps -ef | grep handle_clean_call | grep -v grep | awk '{print $2}' | xargs kill -9 查看网卡流量 network.sh #!/bin/bash ethn=$1 while true do RX_pre=$( 阅读全文
posted @ 2020-09-17 18:14 呓语i 阅读(93) 评论(0) 推荐(0) 编辑