shell里面怎么调用,执行python文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell里面怎么调用,执行python文件相关的知识,希望对你有一定的参考价值。
#!/bin/bashpython Test.py
#直接就可以调用python脚本了 参考技术A python a.py 参考技术B shell只能去执行 如果想调用py的函数,你就写好py加上参数 shell去python yourpy arvg1 这样去调用.
一个shell脚本 怎么执行多条命令
#cat canshu.txt # 这个文件里放你的第3 4 参数xx3 xx4
下面这个脚本先for 读出你的参数,然后依次拼成命令执行调用
#!/bin/sh
for canshu in `cat canshu.txt`
do
canshu3=`echo $canshu|awk \'print $1\'`
canshu4=`echo $canshu|awk \'print $2\'`
sh a.sh 20131201 20131231 $canshu3 $canshu4
done 参考技术A shell脚本本身就在里面执行多条命令的
把你需要执行的命令一行行写入你的shell脚本中就可以了
以上是关于shell里面怎么调用,执行python文件的主要内容,如果未能解决你的问题,请参考以下文章