美文网首页
linux终端指令定时执行

linux终端指令定时执行

作者: Yayamia | 来源:发表于2023-02-17 21:52 被阅读0次

    如果为了多线程且避免退出shell后关闭,可以使用screen

    在对应路径写python脚本(如可使用vim

    脚本如下

    import time
    import os
    
    while True:
        cur_time = time.localtime()
        day = cur_time.tm_mday
        hour = cur_time.tm_hour
        minute = cur_time.tm_min
        if day == 18 and hour == 21 and minute == 48:
            os.system('cellranger count...')
            break
    
    

    为了验证确实能运行,可以先设置一个近一点的时间试运行一下

    相关文章

      网友评论

          本文标题:linux终端指令定时执行

          本文链接:https://www.haomeiwen.com/subject/gajvkdtx.html