对不起,我粗鲁的英语。伙计们,有人从python脚本更改过encfs目录密码吗? 我已经用代码从脚本中解密了encfs
p1=subprocess.Popen('encfs ~/dir0 ~/dir1 --stdinpass',stdin=subprocess.PIPE,stdout=subprocess.PIPE,shell=True)
out1 = p1.communicate(s)[0]
print(out1)
现在我需要从脚本更改encfs密码 我尝试过
pr2=subprocess.Popen('encfsctl passwd ~/dir0',stdout=subprocess.PIPE,stdin=subprocess.PIPE,shell=True)
f=pr2.communicate('pwd'.encode(),10)
有什么建议吗?