shell 脚本中的混合代码。共享变量
我有一个 shell 脚本,里面有一段 python 代码.. 如何将 shell 脚本中的 version
变量共享到 Python 代码段?
#!/bin/sh
version="1"
output=$(python -c '
import sys;
import json;
if $version == 1:
print("yes")
')
echo $output
它给出语法错误:无效语法..
I have a shell script which has a piece of python code in it ..
How can I share the version
variable from my shell script to the piece of python code?
#!/bin/sh
version="1"
output=$(python -c '
import sys;
import json;
if $version == 1:
print("yes")
')
echo $output
It gives syntax error : Invalid syntax..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要共享变量。传递论据。
Don't share variables. Pass arguments.