在.profile 里加了一行,用于登录后自动运行某个 py 脚本
python3 example.py &
然后我发现脚本会有如下问题,比如
import os
import subprocess
loginIPBytes = subprocess.check_output("who -m|awk -F '[()]' '{print $2}'", shell=True)
loginIP = loginIPBytes.decode('utf-8').replace('\n', '')
# 或者读取环境变量
loginIP = os.environ['SSH_CLIENT'].split(' ')[0]
使用后台运行是拿不到任何输出的,而去掉&用前台就很正常。
另外不放入.profile ,直接“python3 example.py &”
也是正常的,很疑惑到底是什么问题
1
string2020 2023-03-14 15:21:15 +08:00
.profile 里是啥
|
2
Mashirobest OP 测试了 os.environ['USER']没有问题,猜测是'SSH_CLIENT'这个环境变量只存在 ssh 登录的 shell 以及其子进程中,而.profile 里面启动的后台任务不属于这个范围内。
不过还是想不明白为什么 subprocess.check_output("who -m")也读取不到,而测试了 subprocess.check_output("uname")等倒是正常的。 |
3
Mashirobest OP @string2020
if [ "$BASH" ]; then if [ -f ~/.bashrc ]; then . ~/.bashrc fi fi mesg n 2> /dev/null || true # 后面加上的 python3 example.py & |
4
yinseyingji 2023-03-14 17:35:54 +08:00
有可能执行了,你看不到结果。把结果重定位到某个文本文件里去再加 & ,查看文件是否有内容就知道脚本到底有没有执行。
|
5
qwq11 2023-03-14 19:12:32 +08:00
% ls
env test.py text.txt % cat env python ./test.py & % cat test.py import subprocess s = subprocess.run(["cat", "/tmp/v2ex/text.txt"], capture_output=True) output = f'stdout: {s.stdout}\nstderr: {s.stderr}' with open('output.txt', 'w') as f: f.write(output) % source env [2] 25267 [2] + 25267 done python ./test.py % cat output.txt stdout: b'123456\n' stderr: b''% 盲猜 job 报错退出了,你可以 cat /proc/xxx/fd/2 瞅瞅 |