混合shell和python脚本可能吗?

前端之家收集整理的这篇文章主要介绍了混合shell和python脚本可能吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我发誓我以前见过这个,但现在找不到它.是否有可能让 shell脚本启动 python interpeter“mid stream”,即:
#!/bin/bash
#shell stuff..

set +e

VAR=aabb

for i in a b c; do
    echo $i
done

# same file!

#!/usr/bin/env python
# python would be given this fd which has been seek'd to this point

import sys

print ("xyzzy")

sys.exit(0)
您可以使用此shell语法(在Unix文献中称为此文档):
#!/bin/sh
echo this is a shell script

python <<@@
print 'hello from Python!'
@@

‘<<'后面的标记运算符可以通过任意标识符,人们经常使用EOF(文件结尾)或EOD(文档结尾)之类的东西.如果标记开始一行,则shell将其解释为程序的输入结束.

原文链接:https://www.f2er.com/bash/383964.html

猜你在找的Bash相关文章