Linux
Time-Traveler
这个作者很懒,什么都没留下…
展开
-
PSCP基本操作
简要说明pscp为window与Linux之间的文件传输工具,使用和Linux下scp命令相似基本命令pscp [options] [user@]host:source target指定端口的时候是 -P(大写)本地文件上传服务器:.\pscp.exe -P 22 F:\test\window_dump.xml root@ip:/root/window_dump.xml拉回文件: .\pscp.exe -P 22 root@120.26.162.141:/root/window_原创 2020-08-03 15:45:17 · 999 阅读 · 0 评论 -
adb shell 后台运行
使用adb shell nohup xxxxxxxxx &以及setsid xxxxxxxx & 失败后的新解决方式当会话结束后,nohup xxx &依旧被杀,各个语言可以尝试交互式执行命令,一种新的思路import subprocesswith open("test.log","w") as f: cmd = 'adb.exe shell' p = subprocess.Popen(cmd, shell=False, stdin=subprocess.P原创 2020-05-13 11:35:37 · 4270 阅读 · 2 评论