如何从Windows任务调度程序上运行(ubuntu bash windows 10)程序

时间:2017-05-06 09:10:25

标签: windows bash ubuntu windows-subsystem-for-linux taskscheduler

我需要在ubuntu bash中每5分钟执行一次任务,我喜欢使用Windows任务调度程序。 我不知道如何写一个.bat文件来启动ubuntu bash中的应用程序。 我测试了这些并且没有用。     c:\ Windows \ System32 \ bash.exe -l [program_name args]

1 个答案:

答案 0 :(得分:4)

可以在ugsntu bash上运行命令,并在args中添加-c标志

c:\Windows\System32\bash.exe -c <command>

并将其写入.bat文件,然后添加到Windows任务计划程序。