摘要: ### ```python c = wmi.WMI() process_watcher = c.Win32_Process.watch_for("creation") while True: process = process_watcher() ``` 阅读全文
posted @ 2019-12-20 17:02 李随风 阅读(480) 评论(0) 推荐(0)
摘要: ## ```shell #用户 useradd test #增加test用户 passwd test 123 #修改test用户名密码 groups test #显示test用户所在组 usermod -a -G groupA test #-a 代表 append, 也就是 将自己添加到 用户组groupA 中 #进程 ps -ef #显示所有进程信息 #文件操作 tail -3 test.txt 阅读全文
posted @ 2019-12-20 16:53 李随风 阅读(102) 评论(0) 推荐(0)