我正在尝试使用python导出环境变量,但似乎无法弄清楚。 这就是我要复制的内容:
export SHELLCODE = $(python -c "print <shellcode here>")
这是我的代码:
subprocess.Popen('export Shellcode=$(python -c \"print "{}" \')'.format(shellcode), shell=True)
但是当我运行它时,它说
File "<string>", line 1
print 1�Ph//shh/bin
^
答案 0 :(得分:0)
添加linux环境变量的正确方法
$(python -c 'print "export MY_DATA=my_export"')