码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-07-10 23:35:56      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:callable   std   分享   odi   -o   sort   data   game   append   

技术分享图片

#!/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脚本

标签:callable   std   分享   odi   -o   sort   data   game   append   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!