python编写执行指定路径下的hotup.sh脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python编写执行指定路径下的hotup.sh脚本相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python
#coding:utf-8
import os
import re
import sys
num = []
game_gen_path = ‘/data/bz-tw-and/‘
for dirs in os.listdir(game_gen_path):
if re.match(‘sd+‘,dirs):
num.append(dirs[1:])
number = sorted(map(int,num))
def callable(input_args):
if input_args == ‘start‘:
for i in number:
script_abs_path = game_gen_path + ‘s‘ + str(i) + ‘/bin/hotup.sh‘
os.system(‘
sh %s
‘ % script_abs_path)
print(‘ 33[31m%d 33[0m service alerady execute‘ % i)
if __name__ == ‘__main__‘:
callable(sys.argv[1])
以上是关于python编写执行指定路径下的hotup.sh脚本的主要内容,如果未能解决你的问题,请参考以下文章