V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
Mashirobest
V2EX  ›  Python

这是什么原因呢?

  •  
  •   Mashirobest · 2023-03-14 14:28:47 +08:00 · 1585 次点击
    这是一个创建于 403 天前的主题,其中的信息可能已经有所发展或是发生改变。

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

    5 条回复    2023-03-14 19:12:32 +08:00
    string2020
        1
    string2020  
       2023-03-14 15:21:15 +08:00
    .profile 里是啥
    Mashirobest
        2
    Mashirobest  
    OP
       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
        3
    Mashirobest  
    OP
       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
        4
    yinseyingji  
       2023-03-14 17:35:54 +08:00
    有可能执行了,你看不到结果。把结果重定位到某个文本文件里去再加 & ,查看文件是否有内容就知道脚本到底有没有执行。
    qwq11
        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 瞅瞅
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2784 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 27ms · UTC 14:44 · PVG 22:44 · LAX 07:44 · JFK 10:44
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.