我想通过将一些PYTHON代码的输出传递给'whiptail'来在无头linux服务器上使用TUI(文本用户界面)。不幸的是,似乎没有任何事情发生在鞭尾。当我从常规shell脚本管道输出时,whiptail工作正常。这就是我所拥有的:
data-gen.sh
#!/bin/bash
echo 10
sleep 1
echo 20
sleep 1
...
...
echo 100
sleep 1
$ ./data-gen.sh | whiptail --title“TEST”--gauge“GAUGE”0 50 0
我按预期增加了以下进度条。
现在我尝试从python中复制相同的东西:
data-gen.py
#!/usr/bin/python
import time
print 10
time.sleep(1)
...
...
print 100
time.sleep(1)
$ ./data-gen.py | whiptail --title“TEST”--gauge“GAUGE”0 50 0
我将以下进度条保持在0%。看不到增量。一旦后台的python程序退出,Whiptail就会退出。
有关如何将python输出成功传输到whiptail的任何想法?我没有用对话试过这个;因为我想坚持预先安装在大多数ubuntu发行版上的whiptail。
答案 0 :(得分:1)
man whiptail
说:
- 计量文字高度宽度百分比
A gauge box displays a meter along the bottom of the box. The meter indicates a percentage. New percentages are read from standard input, one integer per line. The meter is updated to reflect each new percentage. If stdin is XXX, the first following line is a percentage and subsequent lines up to another XXX are used for a new prompt. The gauge exits when EOF is reached on stdin.
这意味着whiptail
从standard input
读取。很多节目
通常缓冲输出,当它没有去文件。强迫
python
生成无缓冲输出,您可以:
使用unbuffer
:
$ unbuffer ./data-gen.py | whiptail --title "TEST" --gauge "GAUGE" 0 50 0
在命令行上使用-u
开关:
$ python -u ./data-gen.py | whiptail --title "TEST" --gauge "GAUGE" 0 50 0
修改data-gen.py
的shebang:
#!/usr/bin/python -u
import time
print 10
time.sleep(1)
print 20
time.sleep(1)
print 100
time.sleep(1)
在每个print
之后手动刷新标准输出:
#!/usr/bin/python
import time
import sys
print 10
sys.stdout.flush()
time.sleep(1)
print 20
sys.stdout.flush()
time.sleep(1)
print 100
sys.stdout.flush()
time.sleep(1)
设置PYTHONUNBUFFERED
环境变量:
$ PYTHONUNBUFFERED=1 ./data-gen.py | whiptail --title "TEST" --gauge "GAUGE" 0 50 0