我需要在ubuntu bash中每5分钟执行一次任务,我喜欢使用Windows任务调度程序。 我不知道如何写一个.bat文件来启动ubuntu bash中的应用程序。 我测试了这些并且没有用。 c:\ Windows \ System32 \ bash.exe -l [program_name args]
答案 0 :(得分:4)
可以在ugsntu bash上运行命令,并在args中添加-c标志
c:\Windows\System32\bash.exe -c <command>
并将其写入.bat文件,然后添加到Windows任务计划程序。