这是什么原因呢?

2023-03-14 14:28:47 +08:00
 Mashirobest

在.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 &”也是正常的,很疑惑到底是什么问题

1599 次点击
所在节点    Python
5 条回复
string2020
2023-03-14 15:21:15 +08:00
.profile 里是啥
Mashirobest
2023-03-14 15:43:36 +08:00
测试了 os.environ['USER']没有问题,猜测是'SSH_CLIENT'这个环境变量只存在 ssh 登录的 shell 以及其子进程中,而.profile 里面启动的后台任务不属于这个范围内。
不过还是想不明白为什么 subprocess.check_output("who -m")也读取不到,而测试了 subprocess.check_output("uname")等倒是正常的。
Mashirobest
2023-03-14 15:44:52 +08:00
@string2020
if [ "$BASH" ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi

mesg n 2> /dev/null || true
# 后面加上的
python3 example.py &
yinseyingji
2023-03-14 17:35:54 +08:00
有可能执行了,你看不到结果。把结果重定位到某个文本文件里去再加 & ,查看文件是否有内容就知道脚本到底有没有执行。
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 瞅瞅

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/923895

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX