我試圖用這個命令生成一個隨機字符串:獲取系統的輸出命令,使用管道(Python)的
strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 30 | tr -d '\n';
工作正常,但是當我嘗試做subprocess.call(cmd,shell=True)
它只是卡住在字符串/ dev/urandom命令並且用我的屏幕屏蔽grep: writing output: Broken pipe
這是什麼原因造成的?我該如何解決?
我試圖用這個命令生成一個隨機字符串:獲取系統的輸出命令,使用管道(Python)的
strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 30 | tr -d '\n';
工作正常,但是當我嘗試做subprocess.call(cmd,shell=True)
它只是卡住在字符串/ dev/urandom命令並且用我的屏幕屏蔽grep: writing output: Broken pipe
這是什麼原因造成的?我該如何解決?
無需子,觀察:
>>> import base64
>>> r = open("/dev/urandom","r")
>>> base64.encodestring(r.read(22))[:30]
'3Ttlx6TT3siM8h+zKm+Q6lH1k+dTcg'
>>> r.close()
此外,strings
ING然後grep
從/dev/urandom
荷蘭國際集團的字母數字字符是巨大效率低下,浪費了整個很大的隨意性。在我的桌面PC,上述蟒蛇只需不到10毫秒,從bash的執行,你strings ...
oneliner花費300-400 ...
對於一個純Python的解決方案,也適用於系統,而不/dev/urandom
- 並給出字母數字字符(如果你真的不想要+或/):
import string
import random
''.join([random.choice(string.printable[:62]) for i in range(30)])
這是正確的答案。爲什麼重新發明輪子? –
好東西謝謝。 – gEr
首先,對於你正在做的事情,最好直接使用python生成字符串。
無論如何,使用subprocess
時,正確的方法來管數據從一個過程到另一個是通過重定向stdout
和/或stderr
到subprocess.PIPE
,和與先前的過程stdin
stdout
喂新進程。
如果你加上'可執行=「/斌/ bash''明確到'call'? – agf
仍然有同樣的問題。 – gEr