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%d33[0m service alerady execute‘ % i)

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

以上是关于python编写执行指定路径下的hotup.sh脚本的主要内容,如果未能解决你的问题,请参考以下文章

python获取指定文件夹下的文件路径

python笔记之按文件名搜索指定路径下的文件

“命令提示符提示:系统找不到指定的路径”是怎么回事?

python脚本如何解压指定路径下的所有rar文件?有没有rar的模块用?

递归删除指定路径下的空目录

如何用Python判断指定路径下的文件是文件夹还是文件(for循环写法总结)