我想用 Cygwin 的 cron 启动记事本。我可以从 cron 运行脚本,所以我知道 cron 正在工作。但是,当我想启动记事本时,它不会在前台启动程序。我试图以各种方式在 crontab 上启动它,但没有成功。这是cronevents:
CMD (C:\windows\notepad.exe)
CMD (notepad.exe &)
CMD (C:\cygwin\bin\bash.exe -l -c "C:\windows\notepad.exe &")
CMD (C:\cygwin\bin\bash.exe -l -c "C:\windows\notepad.exe")
CMD (C:\cygwin\bin\bash.exe -l -c "C:\windows\notepad.exe" &)
CMD (C:\cygwin\bin\bash.exe -l -c notepad &)
CMD (C:\cygwin\bin\bash.exe -l -c C:\windows\notepad.exe &)
CMD (notepad &^I)
CMD (notepad )
以下是当前 crontab -l 的样子:
$ crontab -l
# DO NOT EDIT THIS FILE - edit the master and reinstall.
# (/tmp/crontab.KhwbuL8Q3t installed on Thu Feb 9 08:56:32 2012)
# (Cron version V5.0 -- $Id: crontab.c,v 1.12 2004/01/23 18:56:42 vixie Exp $)
#My Crontab file
*/1 * * * * notepad
任何帮助,将不胜感激。
谢谢,