首页 > 编程语言 > 详细

python编写执行指定路径下的hotup.sh脚本

时间:2018-07-10 23:29:19      阅读:319      评论:0      收藏:0      [点我收藏+]
技术分享图片

#!/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(‘s\d+‘,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(‘\nsh %s\n‘ % script_abs_path)
            print(‘ \033[31m%d\033[0m service alerady execute‘ % i)

if __name__ == ‘__main__‘:
    callable(sys.argv[1])

python编写执行指定路径下的hotup.sh脚本

原文:http://blog.51cto.com/yht1990/2140077

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!